strength of materials in matlab
조회 수: 8 (최근 30일)
이전 댓글 표시
Hi. I try to draw a beam in matlab like in the picture. can somebody help me?
댓글 수: 0
답변 (1개)
KSSV
2020년 8월 1일
P = [0 0] ;
L = 1000 ; % length of beam
B = 0.5 ; % breadth of beam
B = [P ; L P(2) ; L B ; P(1) B] ;
patch(B(:,1),B(:,2),'b')
ylim([-5 5])
box on
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 External Language Interfaces에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!