how can i get output
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
input sample: x=[43 03 00 10]
output sample: y= 43030010
how can i get this output ???
Antworten (3)
Andrei Bobrov
am 16 Jan. 2013
if
x = [43 3 0 10]; % double array
y = x*10.^(6:-2:0);
Azzi Abdelmalek
am 16 Jan. 2013
Bearbeitet: Azzi Abdelmalek
am 16 Jan. 2013
x= [43 3 0 10]
y=[]
for k=1:numel(x)
y=[y num2str(x(k))];
end
y=str2num(y);
%or
y=str2num(cell2mat(arrayfun(@num2str,x,'un',0)))
str2num(sprintf('%02d', x))
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!