Create an input array from -1*pi to 1*pi

4 Ansichten (letzte 30 Tage)
Aaron Kerr
Aaron Kerr am 23 Mai 2022
Kommentiert: Torsten am 25 Mai 2022
% Create an input array from -1*pi to 1*pi
t=[3 4 5 6 7 8 9];
% Calculate |sin(t)|
x=abs(sin(t));
%plot result
plot(t,x);

Antworten (1)

Walter Roberson
Walter Roberson am 23 Mai 2022
% Create an input array from -1*pi to 1*pi
t=-pi:pi;
% Calculate |sin(t)|
x=abs(sin(t));
%plot result
plot(t,x);
  5 Kommentare
Aaron Kerr
Aaron Kerr am 25 Mai 2022
Thanks, what about if it was t=[0 1 2 3 4 5 6]; what is the "t" refering to.
Torsten
Torsten am 25 Mai 2022
If you set
t=[0 1 2 3 4 5 6];
x=abs(sin(t));
plot(t,x)
MATLAB takes the point (0,abs(sin(0))), (1,abs(sin(1))),...,(6,abs(sin(6))) and connects them in this order by straight lines in the plot.
Same for any array t that you define in advance.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Linear Algebra finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by