recalling the values as a row matrix
3 views (last 30 days)
Show older comments
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............
Answers (1)
dpb
on 16 Sep 2015
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 Comments
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!