How to wrote theta as a matlab code
이전 댓글 표시
How to wrote theta as matlab code
for example 2sintheta
채택된 답변
추가 답변 (2개)
James Tursa
2017년 10월 19일
편집: James Tursa
2017년 10월 19일
E.g.,
theta = pi/4;
result = 2*sin(theta); % <-- if theta is in radians
theta = 45;
result = 2*sind(theta); % <-- if theta is in degrees
카테고리
도움말 센터 및 File Exchange에서 Polar Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!