Removing quotations from matrix

11 Ansichten (letzte 30 Tage)
bluexdestination
bluexdestination am 26 Sep. 2013
Kommentiert: Jan am 29 Sep. 2013
Hi, I'm new to matlab and I understand that single quotations when a matrix is printed is just to show the user that it's a string in the matrix. However, I was wondering how I can remove it. Below is the code I implemented and the results I see on the command prompt. I tried other ways i.e (square brackets), but the results were the same:
prompt = 'Number of loops? ';
loopCount = input (prompt);
Imatrix = {};
for i = 1:loopCount
Imatrix{i,1} = strcat('I', num2str(i));
end
display(Imatrix)
the command window displays
Imatrix =
'I1'
'I2'
'I3'
How can I make it display the same with without the quotations?
Thanks in advance for the help.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 26 Sep. 2013
char(Imatrix)
  2 Kommentare
bluexdestination
bluexdestination am 28 Sep. 2013
thanks for the help! (:
Jan
Jan am 29 Sep. 2013
Although converting the cell string to a CHAR array displays the contents without quotes as a side effect, I'd prefer a method to display directly.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Jan
Jan am 29 Sep. 2013
fprintf('%s\n', IMatrix{:});

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by