For loop not working for my equation.

1 回表示 (過去 30 日間)
Giuseppe
Giuseppe 2014 年 3 月 26 日
コメント済み: Giuseppe 2014 年 5 月 21 日
This is my for loop.
for gra=m && yint=c
x = (gra-c)./ (m-2)
y = m.*x+c
end

採用された回答

Image Analyst
Image Analyst 2014 年 3 月 26 日
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.
  1 件のコメント
Giuseppe
Giuseppe 2014 年 5 月 21 日
ok

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by