MATLAB入門 5.1配列のインデックス付けの追加問題
2 views (last 30 days)
Show older comments
「変数 y を作成し、y を data に対するインデックスとして使用してみてください。」とありますが,これはどのような状態なのでしょうか?イメージがわかずにいます.
0 Comments
Accepted Answer
Kojiro Saito
on 4 Jun 2021
MATLAB入門の5.1ではTask1~Task3で、行や列の数字やendを使ってdata配列から値を抽出していました。
追加の練習にある、「変数をインデックスとして使用することもできます。変数 y を作成し、y を data に対するインデックスとして使用してみてください。」とは、
数字を直接入力する代わりに変数をインデックスの中で使用できます、という意味です。
例えば、
x = data(end, 3);
をおこなう代わりに変数yを使って
y = 3;
x = data(end, y);
を実行するようなイメージです。
0 Comments
More Answers (0)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!