MATRIX PROBLEM IN MATLAB
1 回表示 (過去 30 日間)
古いコメントを表示
Saptorshee Chakraborty
2022 年 6 月 13 日
コメント済み: Saptorshee Chakraborty
2022 年 6 月 13 日
Hello,
I have a simple question, why does regime (aa) is becoming 0 2
T=48;
B=3;
j = 1:B
bk = 2:(T-2)
regime = [0,bk,T-1]
aa = 1:(j+1)
regime(aa)
0 件のコメント
採用された回答
David Hill
2022 年 6 月 13 日
You are indexing into regime with an array (aa) which is 1:2. Not sure what you want array (aa) to be:
j=1:3;
aa=1:(j+1);%this will only take the first element of j, same as aa=1:2
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!