how this save will work, mkdir(database ) y = strcat(database,'/trainID'); save(y,'trainID')
Mostrar comentarios más antiguos
mkdir(database) % will make new folder
x= strcat(database,'/Subtrain'); %horizontally concatenatesstrings in arrays
save(x,'Subtrain') % saves variable
y = strcat(database,'/trainID');
save(y,'trainID')
am i right or not ?? and what is "/trainID" here,and how this save will work ?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Environment and Settings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!