how to write equation in matlab ?
30 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Selva Karna
on 22 Aug 2017
Edited: madhan ravi
on 6 Dec 2018
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 Comments
More Answers (2)
khalid salim
on 8 Nov 2019
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 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!