how to write equation in matlab ?
29 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Selva Karna
2017 年 8 月 22 日
編集済み: madhan ravi
2018 年 12 月 6 日
you have to write following equation:
Z=A^2+B^2-2ab
in MATLAB:
syms a b c z
z=(a^2+b^2-2*a*b)
0 件のコメント
その他の回答 (2 件)
khalid salim
2019 年 11 月 8 日
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])
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!