How to find/present all of the grid points xi, where xi = 2+(i-1)*2 for 0<=i<=n.
1 回表示 (過去 30 日間)
古いコメントを表示
I'm trying to figure out how to display the value of from x(0) to x(n)
0 件のコメント
採用された回答
Star Strider
2017 年 4 月 15 日
This vectorises easily enough:
i = 0:7;
xi = 2+(i-1)*2
xi =
0 2 4 6 8 10 12 14
Am I not understanding something in your Question?
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!