how to write equation in matlab ?
Ältere Kommentare anzeigen
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 Kommentare
Stephen23
am 22 Aug. 2017
The image shows a parametric function, not an equation.
KSSV
am 22 Aug. 2017
That equation is indexing the matrices....read about MATLAB matrix indexing.
ajeet verma
am 22 Aug. 2017
Torsten
am 22 Aug. 2017
https://de.mathworks.com/help/matlab/ref/yyaxis.html
Best wishes
Torsten.
Akzeptierte Antwort
Weitere Antworten (2)
aisha obaid alsuwaidi
am 6 Dez. 2018
(4 * x^4 - 2 * x^(-7/4) - x^(-2))
khalid salim
am 8 Nov. 2019
0 Stimmen
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])
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!