资源简介
振动理论及应用(第5版)——国际著名力学图书影印版系列,matlab 程序
代码片段和文件信息
%This program produces the mass and stiffness matrix for
%a bar where each element is the same length but may
%vary in its properties. The bar is pinned at the left end.
clear
ll=input(‘ What is the length of the bar? ‘)
n=input(‘ How many elements would you like? ‘)
for i=1:n
l(i)=ll/n;
end
mass=input(‘Enter the mass of the bar as a vector ‘)
for i=1:n
m(i)=mass(i)*l(i);
end
E=input(‘Enter the elastic modulus as a vector ‘)
a=input(‘Enter the cross-sectional area as a vector ‘)
for i=1:n
k(i)=E(i)*a(i)/l(i);
end
mm=zeros(n+1);
kk=zeros(n+1);
mm(11)=2*m(1);
mm(12)=m(1);
for i=2:n
mm(ii-1)=m(i-1);
mm(ii)=2*m(i-1)+2*m(i);
mm(ii+1)=m(i);
end
mm(n+1n)=m(n);
mm(n+1n+1)=2*m(n);
mm=(1./6.)*mm;
kk(11)=k(1);
kk(12)=-k(1);
for i=2:n
kk(ii-1)=-k(i-1);
kk(ii)=k(i-1)+k(i);
kk(ii+
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 5606 1997-10-27 00:00 thoery of vibration\Archive.sit
....... 975 1997-10-27 00:00 thoery of vibration\bar.m
....... 1304 1997-10-27 00:00 thoery of vibration\beam.m
....... 917 1997-10-27 00:00 thoery of vibration\choljac.m
....... 143 1997-10-27 00:00 thoery of vibration\f.m
....... 142 1997-10-27 00:00 thoery of vibration\force1.m
....... 143 1997-10-27 00:00 thoery of vibration\force2.m
....... 143 1997-10-27 00:00 thoery of vibration\force3.m
....... 621 1997-10-27 00:00 thoery of vibration\iterate.m
....... 765 1997-10-27 00:00 thoery of vibration\mykl.m
....... 741 1997-10-27 00:00 thoery of vibration\polyn.m
....... 1373 1997-10-27 00:00 thoery of vibration\runga.m
....... 398 1997-10-27 00:00 thoery of vibration\tor.m
目录 0 2011-01-27 17:05 thoery of vibration
----------- --------- ---------- ----- ----
13271 14
相关资源
- HMMforspeechrecogntion 一个可执行的HMM语音
- popular-UCI-datasets 一些非常有用的数据
- GAPSO 这个算法是遗传算法和粒子群优
- synchronization 利用matlab仿真实现载波的
- Gabor Gabor小波变换的matlab实现
- 4 matlab区域填充的具体算法及演示
- MATLAB_image_process_with_PDE 运用偏微分方
- gabijiao 该程序通过实例(函数)
- SIFT2844912
- gbvs 二维图像视觉显著性检测
- wenli 分析了纹理特征提取方法
- EELM
- GPS_carr_loop GPS跟踪模块的载波跟踪环的
- barcode 基于图像的条形码识别程序(识
-
myaudiopla
yer 使用Matlab GUI实现的音频 - NURBS-curve NURBS曲线的绘制程序
- B-spline-surface 在MATLAB-2008a环境下编写的
- NURBS-surface 在MATLAB-2008a环境下编写的
- ACO 用MATLAB编写的蚁群算法最短路径寻
- wavplay 基于matlab GUI界面的播放器
- allfns 是由牛津大学VGG开发的三维重建
- spectrogram_fft
- adaboost 基于adaboost的人脸识别程序
- 2 2课程报告要求:按照讲课内容
- gps GPS信号的捕获、处理程序
- fuzzynetme 模糊神经网络的MATLAB程序
- naive_bayes_numeric 利用matlab实现的朴素贝
- MFandMPF 计算肌电信号积分肌电值
- BM3D BM3D去噪算法的实现和相关文档
- BarrelDistortion 两个matlab程序
评论
共有 条评论