Effacer les filtres
Effacer les filtres

How can the shear force diagram be plotted?

1 vue (au cours des 30 derniers jours)
Akshay Pratap Singh
Akshay Pratap Singh le 18 Fév 2019
How can the shear force diagram be prepared through MATLAB for following figure?

Réponses (1)

KSSV
KSSV le 18 Fév 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)

Catégories

En savoir plus sur Physics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by