Borrar filtros
Borrar filtros

Can I change this?

2 visualizaciones (últimos 30 días)
Younghun Kim
Younghun Kim el 10 de Jun. de 2020
Respondida: Stephen23 el 10 de Jun. de 2020
I have array_X
array_X=[1,1,1,0,1,0,0,0,1,0]
i want to change to
like this.
ans =
'1110100010'
how to change this?

Respuesta aceptada

KSSV
KSSV el 10 de Jun. de 2020
k = num2str(array_X) ; % convert to string
k(k ==' ') = [] ; % remove spaces
There will be more other elegant ways.

Más respuestas (1)

Stephen23
Stephen23 el 10 de Jun. de 2020
The most efficient solution is likely to be
>> X = [1,1,1,0,1,0,0,0,1,0];
>> A = sprintf('%u',X)
A = 1110100010

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by