Text in while loop creating matrix

I was trying to create a matrix with text in some cases, but I can't. I tried with advices from other answers, but it didn't work.
The text which I want to include is «start» and «end» for two different cases like this:
NM = 5
FF = zeros(NM*2,2);
start = 'start';
ending = 'end';
i=1
while i<=NM
FF(i*2,1) = i
FF(i*2-1,1) = i
FF(i*2,2) = fprintf(start);
FF(i*2-1,2) = fprintf(ending)
i = i+1
end

댓글 수: 4

Stephen23
Stephen23 2019년 7월 12일
편집: Stephen23 2019년 7월 12일
Numeric arrays cannot contain characters.
You could obtain the character code values and store those in a numeric array.
As its documentation makes quite clear, the output of fprintf is the number of bytes printed. It is doubtful that your fprintf usage helps with your stated goal.
Please show an example of what you expect the output to look like.
Isai Fernandez
Isai Fernandez 2019년 7월 12일
Tnahk you so much.
But, it could be possible to get the the solution working with tables?
Stephen23
Stephen23 2019년 7월 12일
편집: Stephen23 2019년 7월 12일
"it could be possible to get the the solution working with tables?"
Possibly, but as you have not shown what the expected output should be nor explained what further processing you will do using this data, it is hard to give any advice on this.
Isai Fernandez
Isai Fernandez 2019년 7월 12일
I need to use this block of data to concatenate with other matrix, after that.

댓글을 달려면 로그인하십시오.

답변 (1개)

Thorsten
Thorsten 2019년 7월 12일
편집: Thorsten 2019년 7월 12일

0 개 추천

You have to use cell arrays if you want to mix text and numbers. And fprintf returns the number of printed bytes, so you directly assign the string to the cell, w/o fprintf:
NM = 5
FF = cell(NM*2,2);
start = 'start';
ending = 'end';
i=1;
while i<=NM
FF{i*2,1} = i;
FF{i*2-1,1} = i;
FF{i*2,2} = start;
FF{i*2-1,2} = ending;
i = i+1;
end

댓글 수: 1

Isai Fernandez
Isai Fernandez 2019년 7월 12일
I need to concatenate after this loop with another matrix. Tables are the solution?

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

릴리스

R2019a

질문:

2019년 7월 12일

댓글:

2019년 7월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by