extracting value from a matrix
2 ビュー (過去 30 日間)
古いコメントを表示
Maria Imdad
2021 年 4 月 19 日
回答済み: Rafael Hernandez-Walls
2021 年 4 月 19 日
Hi everyone,
I have this matrix "X" of one row and 64 columns, it has only binary values as given by
X=[1000000000000000000000000000000000000000000000000000000000000000];
I want help to create a for loop which helps me extract each value from this matrix, column by column and save the obtained vaue to another variable, Y.
1 件のコメント
Paul Hoffrichter
2021 年 4 月 19 日
This free self-paced course will help you learn a good deal about Matlab operations. After you take this course, please post some code if you are still having some issues.
採用された回答
Rafael Hernandez-Walls
2021 年 4 月 19 日
I think it is better to put the variable X as a string and from there start. for example:
X=['1000000000000000000000000000000000000000000000000000000000000000'];
[~,m]=size(X);
for k=1:m
Y(k)=str2num(X(k));
end
Y
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!