array element concatenation, blank remove
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
dmfwlansejr
am 13 Aug. 2021
Kommentiert: Awais Saeed
am 13 Aug. 2021
p=[1,0,0,0,0,0,1,0]
p=
1 0 0 0 0 0 1 0
This is 1 row,1 colimn
I wnat to make
p=
10000010
, blank removed. This is 1 row, 1 colimn
0 Kommentare
Akzeptierte Antwort
Awais Saeed
am 13 Aug. 2021
p=[1,0,0,0,0,0,1,0];
p = sprintf('%u',p); % it is a char
p = str2num(p); % converted to double
1 Kommentar
Awais Saeed
am 13 Aug. 2021
an alternate
p=[1,0,0,0,0,0,1,0];
p = erase(num2str(p),' '); % it is a char
p = str2num(p);
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Operators and Elementary Operations 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!