Put specific name in file via writematrix
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ivan Mich
il 27 Feb 2021
Modificato: the cyclist
il 27 Feb 2021
I want to create an output file. I would like my file to contains also one specific string (character) in its name.
My code is:
%A is a matrix (100x1 double)
str='2020'
writematrix(A,'output' str '.xlsx')
But command writematrix shows me error.
Could you please help me?
0 Commenti
Risposta accettata
the cyclist
il 27 Feb 2021
Modificato: the cyclist
il 27 Feb 2021
You need to concatenate the character arrays. Here is one way to do that:
str='2020'
writematrix(A,['output',str,'.xlsx'])
1 Commento
Walter Roberson
il 27 Feb 2021
Alternative:
writematrix(A,"output"+str+".xlsx")
Più risposte (0)
Vedere anche
Categorie
Scopri di più su File Operations 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!