Does anybody know?
Mostrar comentarios más antiguos
A line of code i could use for my function so when i insert a vector such as [1 2 3 4], the function i am making see's it as the value 1234(one thousand, two hundred and thirty four) instead? Thanks :)
1 comentario
Andrei Bobrov
el 6 de Mzo. de 2012
c = [1 2 3 4]
out = c*10.^(numel(c)-1:-1:0).'
Respuesta aceptada
Más respuestas (1)
the cyclist
el 5 de Mzo. de 2012
x = [1 2 3 4];
str2num(num2str(x')')
1 comentario
Ben Davis
el 5 de Mzo. de 2012
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!