How can i plot function 2^x ??

89 Ansichten (letzte 30 Tage)
Rolando Gutierrez
Rolando Gutierrez am 27 Jun. 2014
Bearbeitet: madhan ravi am 14 Okt. 2018
Sorry im a beginner, but if I got
X=0:0.1:3
Y=2^x
Plot(X,Y)
Why wont matlab plot it? And how do I solve it? Thanks

Akzeptierte Antwort

Ken Atwell
Ken Atwell am 27 Jun. 2014
You've almost got it. Two things to fix:
  1. MATLAB is a case-sensitive language (that upper and lower case matters), so you must use upper-case "X" consistently, and "plot" is all lower case.
  2. The "^" (raise to the power) operator is for square matrices. To computer a per-element raise to the power, use ".^" instead.
X=0:0.1:3
Y=2.^X
plot(X,Y)
  1 Kommentar
madhan ravi
madhan ravi am 14 Okt. 2018
Bearbeitet: madhan ravi am 14 Okt. 2018
Accepted by madhan ravi since the OP didn’t accept the answer

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by