Azzera filtri
Azzera filtri

Can I change this?

2 visualizzazioni (ultimi 30 giorni)
Younghun Kim
Younghun Kim il 10 Giu 2020
Risposto: Stephen23 il 10 Giu 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?

Risposta accettata

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

Più risposte (1)

Stephen23
Stephen23 il 10 Giu 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

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by