Borrar filtros
Borrar filtros

Remove space between Matrix elements?

7 visualizaciones (últimos 30 días)
Fred John
Fred John el 30 de Dic. de 2014
Respondida: dpb el 30 de Dic. de 2014
Hi!
I have a Matrix which I copied over from Excel, but the problem is it has 2 extra horizontal spaces between elements then I would like it to have (I want 1 space between elements). The Matrix is 30x30 so a pain to remove spaces manually. Is there any quick way to achieve 1 space between the elements? Here is a snippet of the Matrix for example:
i
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
Thanks!

Respuestas (1)

dpb
dpb el 30 de Dic. de 2014
That's all a fignewton of the display formatting; there are no spaces internally.
At the command line, you can close up the spacing via something like
>> num2str(zeros(4),'%2d')
ans =
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
>>
The format command doesn't have the flexibility to specify a specific format string, only short as an option that has five digit precision iirc...

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by