how to write equation in matlab ?
이전 댓글 표시
this is some different type of equation so i am confused how to write code for the equation in attached file, please help please see attached file
댓글 수: 4
Stephen23
2017년 8월 22일
The image shows a parametric function, not an equation.
KSSV
2017년 8월 22일
That equation is indexing the matrices....read about MATLAB matrix indexing.
ajeet verma
2017년 8월 22일
Torsten
2017년 8월 22일
https://de.mathworks.com/help/matlab/ref/yyaxis.html
Best wishes
Torsten.
채택된 답변
추가 답변 (2개)
aisha obaid alsuwaidi
2018년 12월 6일
(4 * x^4 - 2 * x^(-7/4) - x^(-2))
khalid salim
2019년 11월 8일
0 개 추천
s = @(x) (1-0.4*(cos(x/100))).*(0<=x & x<=511);
x = linspace(0, 500);
R = s(x);
figure(1)
plot(x,R)
axis([xlim 0 1.5])
% intensity function
f=1/20;
x = linspace(0, 500);
I=@(x) (R(x).*sin(2*pi*f*x));
plot(x,I)
axis([xlim 0 1.5])
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!