recalling the values as a row matrix

1 回表示 (過去 30 日間)
Offroad Jeep
Offroad Jeep 2015 年 9 月 16 日
コメント済み: dpb 2015 年 9 月 17 日
Hi to all, the program attached satisfy the conditions. now I want that the values which are obtained for theta can be seen all together, when i write theta it tells only the last value........ e.g, for example the loop has n values till reaching the final condition, so when i write theta i can see like this
theta = n1 n2 n3 till nn
what command should i write to get all the values on screen........ Thanks in advance............
  2 件のコメント
Walter Roberson
Walter Roberson 2015 年 9 月 17 日
The logic of that code is strange. With your code
theta1 = theta+dtheta(i)
if theta1 > theta
that is going to be true only if dtheta(i) > 0 . If that is what you want to test, why not test it more directly?
Offroad Jeep
Offroad Jeep 2015 年 9 月 17 日
Any other good idea please..........

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

回答 (1 件)

dpb
dpb 2015 年 9 月 16 日
Preallocate theta before the loop...
theta=zeros(1,nmc);
Then, store each value when computed by writing
theta(i)=...
where you currently only have
theta=...
  2 件のコメント
Offroad Jeep
Offroad Jeep 2015 年 9 月 17 日
Can you please correct in the program........ Its giving error to me
dpb
dpb 2015 年 9 月 17 日
Show your work and the error(s) you get...

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

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by