Filter löschen
Filter löschen

How can the shear force diagram be plotted?

1 Ansicht (letzte 30 Tage)
Akshay Pratap Singh
Akshay Pratap Singh am 18 Feb. 2019
How can the shear force diagram be prepared through MATLAB for following figure?

Antworten (1)

KSSV
KSSV am 18 Feb. 2019
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)

Kategorien

Mehr zu Physics finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by