Can I change this?

1 view (last 30 days)
Younghun Kim
Younghun Kim on 10 Jun 2020
Answered: Stephen23 on 10 Jun 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?

Accepted Answer

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

More Answers (1)

Stephen23
Stephen23 on 10 Jun 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

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!