How do I make a new folder and then name it using the string stored within a variable.
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have named a variable s2. The string stored within s2 is '3 min RT'.
I want to create a new folder named "3 min RT".
At the moment when I use mkdir s2, the folder created is called s2 and not "3 min RT".
Anyhelp please? Thanks!
2 commentaires
Réponses (2)
Alex Mcaulley
le 22 Juil 2019
Modifié(e) : Alex Mcaulley
le 22 Juil 2019
Use:
mkdir(s2)
2 commentaires
Nicholas Byres
le 22 Juil 2019
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!