Character Array initialization and creation
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how can i create a character array and initialize its elements with user defined or predifined values
0 Commenti
Risposte (1)
James Tursa
il 10 Lug 2015
The straightforward answer is simply to assign a string to a variable name. E.g.,
mystring = 'This is a string'; % Initialize mystring
If you want to initialize with a user defined string, then e.g.,
mystring = input('Input the initialization string: ','s');
If you want a more detailed answer, please give more details about what you really want.
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!