Filter löschen
Filter löschen

Please Help Debug/ What are the errors?

1 Ansicht (letzte 30 Tage)
Richard Buccacio
Richard Buccacio am 28 Sep. 2021
Beantwortet: Chunru am 29 Sep. 2021
%Plot a function with respect to time
%Variables
y=t^3-6*t^2+3*t+10;
t=-2:0.1:8;
%Plot command and labels
plot(t,y,*r*);
xlabel(time,t);ylabel(y-axis);
title(y=t^3-6*t^2+3*t+10); grid
  1 Kommentar
per isakson
per isakson am 28 Sep. 2021
Bearbeitet: per isakson am 28 Sep. 2021
Is this homework?
There are several mistakes in this code, which you didn't make in the code of your previous question. E.g. see the title, xlabel and ylabel commands.
If you have used Octave, notice that there are some diffences in the syntax.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Chunru
Chunru am 29 Sep. 2021
t=-2:0.1:8; % define t first, since it is used next
y=t.^3-6*t.^2+3*t+10; % need the element based operation .^
%Plot command and labels
plot(t, y, 'r-');
xlabel('t');
ylabel( 'y');
title('y=t^3-6*t^2+3*t+10');
grid

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by