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!