defining a variable in matlab

7 Ansichten (letzte 30 Tage)
Nicholas
Nicholas am 10 Sep. 2013
V = ((pi*h^2)/3)*((3*r)-h)
plot(h,V)
??? Undefined function or variable 'h'.
Error in ==> p5_22 at 6 V = ((pi*h^2)/3)*((3*r)-h)
I'm sure this is very simple but i forgot how to tell matlab that 'h' is a variable

Akzeptierte Antwort

CVR
CVR am 10 Sep. 2013
hi there, you can use this one
h = 1:1:10 (create variable h from 1 to 10)
  2 Kommentare
Nicholas
Nicholas am 10 Sep. 2013
ok, so since h is now a vector i need to add dots in my equation for it to work...where do i insert them?
Nicholas
Nicholas am 10 Sep. 2013
i got it thank you

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 10 Sep. 2013
h=0:0.1:10
r=5
V= (pi*h.^2/3).*(3*r-h)
plot(h,V)

Kategorien

Mehr zu Mathematics 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