how to use string array in function?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
hello,
I would like to know how to input string arry into vector and matrix using function?
Thanks.
5 Commenti
Risposte (1)
Prathamesh Kulkarni
il 12 Lug 2022
Hi Idan,
You can convert string array of numbers to vector by using str2double function.
A = ["34", "344", "23"]
A =
1×3 string array
"34" "344" "23"
>> B = str2double(A)
B =
34 344 23
0 Commenti
Vedere anche
Categorie
Scopri di più su Characters and Strings 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!