extracting value from a matrix

조회 수: 1 (최근 30일)
Maria Imdad
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
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
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개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by