필터 지우기
필터 지우기

How can the shear force diagram be plotted?

조회 수: 1 (최근 30일)
Akshay Pratap Singh
Akshay Pratap Singh 2019년 2월 18일
댓글: Akshay Pratap Singh 2019년 2월 21일
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)

카테고리

Help CenterFile Exchange에서 Physics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by