Converting a string array into a number array

 Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 13 de Feb. de 2021
Editada: KALYAN ACHARJYA el 13 de Feb. de 2021
#Edited
num_str='123456789'
num_str - '0'
Result:
ans =
1 2 3 4 5 6 7 8 9

7 comentarios

dzix design
dzix design el 13 de Feb. de 2021
Thanks sir 🙏🏼. You just saved me much time in a coding problem
KALYAN ACHARJYA
KALYAN ACHARJYA el 13 de Feb. de 2021
Weocome @dzix design I'm glad it helped
dzix design
dzix design el 13 de Feb. de 2021
May l have your WhatsApp number Sir?
KALYAN ACHARJYA
KALYAN ACHARJYA el 13 de Feb. de 2021
Editada: KALYAN ACHARJYA el 13 de Feb. de 2021
Available in the profile description, but I rarely reply to unknown.
:)
The is no reason to apply num2str(), when the variable is a CHAR vector already. Easier:
num_str = '123456789'
result = num_str - '0'
KALYAN ACHARJYA
KALYAN ACHARJYA el 13 de Feb. de 2021
Yes sir @Jan Thanks, In day time, I have answered a similar question, which first required changing num2str, so I used it here by mistake.
Your teaching is very valuable, thank you and much appreciation
dzix design
dzix design el 13 de Feb. de 2021
@jan thanks 🙏🏼

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Centro de ayuda y File Exchange.

Preguntada:

el 13 de Feb. de 2021

Comentada:

el 13 de Feb. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by