How can i store string in cell without apostrophe?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
siddhesh rane
il 25 Lug 2013
Modificato: Stephen23
il 25 Feb 2021
I want to store say A50 in cell ..but i dont want apostrophes in it like 'A50'..how can i do it.?
I tried to use string to number and string to double but it didnot work.
Thanks in advance.
0 Commenti
Risposta accettata
David Sanchez
il 25 Lug 2013
M = cell(1,1);
str = 'A50';
str = char(str);
M{1} = str;
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!