How can the shear force diagram be plotted?

3 ビュー (過去 30 日間)
Akshay Pratap Singh
Akshay Pratap Singh 2019 年 2 月 18 日
How can the shear force diagram be prepared through MATLAB for following figure?

回答 (1 件)

KSSV
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)
  1 件のコメント
Akshay Pratap Singh
Akshay Pratap Singh 2019 年 2 月 21 日
Thanks @KSSV for try.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeApp Building についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by