Filter löschen
Filter löschen

im trying to plot a function i need help with it

1 Ansicht (letzte 30 Tage)
bob  shot
bob shot am 12 Dez. 2012
the questions says
plot the function
y = 50*2.5^-3x
in the interval 0<x<20
in steps of 0.5
[Merged information from duplicate question]
it should be in either log-log or semi-log scale
i need help
thank you
  3 Kommentare
Walter Roberson
Walter Roberson am 12 Dez. 2012
Matt Fig asked
manar, you are dumping a lot of homework on this site without showing any hint of effort. What have you done so far?
and also said
Did you read this:
help plot
help loglog
help semilogx
help semilogy
Walter Roberson
Walter Roberson am 12 Dez. 2012
Odd, this question was opened by manar jawad but taken over by bob shot ?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Arthur
Arthur am 12 Dez. 2012
t = [0:0.005:4];
y = 4.50*exp(-2.0*t).*cos(12*pi*t);
plot(t,y);
grid;

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D 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