For loop not working for my equation.

1 Ansicht (letzte 30 Tage)
Giuseppe
Giuseppe am 26 Mär. 2014
Kommentiert: Giuseppe am 21 Mai 2014
This is my for loop.
for gra=m && yint=c
x = (gra-c)./ (m-2)
y = m.*x+c
end

Akzeptierte Antwort

Image Analyst
Image Analyst am 26 Mär. 2014
You can't do that. Not sure what you're wanting to do but try to write it like this
for gra = graStart : graStep : graEnd
You give it 3 values, a starting value, an increment, and an ending value. You don't have that - you have a mess. Try to correct it.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements 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