Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

how can i get output

2 visualizzazioni (ultimi 30 giorni)
mukim
mukim il 16 Gen 2013
Chiuso: MATLAB Answer Bot il 20 Ago 2021
input sample: x=[43 03 00 10]
output sample: y= 43030010
how can i get this output ???

Risposte (3)

Andrei Bobrov
Andrei Bobrov il 16 Gen 2013
if
x = [43 3 0 10]; % double array
y = x*10.^(6:-2:0);

Azzi Abdelmalek
Azzi Abdelmalek il 16 Gen 2013
Modificato: Azzi Abdelmalek il 16 Gen 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)))

Thorsten
Thorsten il 16 Gen 2013
Modificato: Thorsten il 16 Gen 2013
str2num(sprintf('%02d', x))

Questa domanda è chiusa.

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by