How can the shear force diagram be plotted?
3 次查看(过去 30 天)
显示 更早的评论
How can the shear force diagram be prepared through MATLAB for following figure?
0 个评论
回答(1 个)
KSSV
2019-2-18
N = 10 ;
X = 1:N ; % beam
Y = zeros(1,N) ;
defo = rand(1,N) ;
idx = randsample(N,4) ;
defo(idx) = -defo(idx) ;
figure
hold on
plot(X,Y,'b') ;
plot(X,Y,'.r')
quiver(X,Y,zeros(1,N),defo)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!