how to make a number to vector?

2 visualizzazioni (ultimi 30 giorni)
idan
idan il 8 Lug 2022
Commentato: Voss il 8 Lug 2022
Hello,
I would like to know how I can get a number from the user and make the numer to a vector?
Thanks.

Risposta accettata

Voss
Voss il 8 Lug 2022
It's not clear what you want, but here's a way to get a number from the user and make a vector of its digits (assuming it's a positive integer):
number = input('Give me a number, user: ','s');
vector = number - '0';
  2 Commenti
idan
idan il 8 Lug 2022
Thanks, its work:)
Voss
Voss il 8 Lug 2022
You're welcome!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Performance and Memory in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by