Problem 2150. ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
MATLABでは,角括弧の中に要素を入れることで、ベクトルを作成できる。
x = [1 2 3 4]
また次のようにも書ける(コンマはオプション)。
x = [1, 2, 3, 4]
問題:次のベクトルを出力する関数を作成せよ。
x = [1 2 3 4 5 6 7 8 9 10]
参考:MATLABの コロン表記を使うと高速化できる。
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers559
Suggested Problems
-
Determine whether a vector is monotonically increasing
21146 Solvers
-
769 Solvers
-
Back to basics 22 - Rotate a matrix
904 Solvers
-
493 Solvers
-
Write a code that will follow the equation y = x * (x + x) * x.
336 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!