how to store a matrix in variables

12 ビュー (過去 30 日間)
Newman
Newman 2016 年 2 月 22 日
回答済み: Dennie 2016 年 2 月 22 日
Hello ,
I want to store the following code in the variable:
p=[p(0)...p(M-1)]';
where m is any integer
I am unable to write a code for it .kindly help
  1 件のコメント
Chad Greene
Chad Greene 2016 年 2 月 22 日
Can you elaborate?

サインインしてコメントする。

採用された回答

Dennie
Dennie 2016 年 2 月 22 日
I think this is what you want:
input_vector=[ 1 2 3 4 5 6 7 8 9 10];
for i=1:M
p(i)=input_vector(i);
end
Matlab code starts arrays with index 1 and not 0, the example that you have given is coherent to c# style arrays.
Hope this helps,
Dennie

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by