how to create array as i describe down?
1 回表示 (過去 30 日間)
古いコメントを表示
Abdulaziz Abutunis
2016 年 10 月 19 日
コメント済み: Abdulaziz Abutunis
2016 年 10 月 20 日
Hello all,
Please I need help with creating an array that starts at a point (point is integer and is a result of pre calculation say the first element is 17) then the second element should be the nearest 10 ceiling which in this case is 20 and the third is 30 and the array continues till 120. so the array will be x=[17 20 30 40 50 60 70 80 90 100 110 120].
Thanks
0 件のコメント
採用された回答
Jos (10584)
2016 年 10 月 19 日
編集済み: Jos (10584)
2016 年 10 月 19 日
x = 17
a0 = (fix(x/10)+1)*10
v = [x a0:10:120]
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!