xlswritespec
Nessuna licenza
The script performs the same function as xlswrite with the added functionality of formatting the data at the particular location written into, so for example if you want to write headers in blue and numbers in gold, you can do this. The example below illustrates how you can write 400 random numbers into a file using the modified script and the original script from MATLAB 7.0, I hope the formatted one looks cleaner to you
Data = rand(20,20)
params.Bold = 'false';
params.FontSize = 10;
params.FontName = 'Verdana';
params.ColorIndex = 14;
params.NumberFormat = '0.000';
xlswritespec('Exemplar.xls',Data,'Example',['B2'],params)
xlswrite('Exemplar.xls',Data,'Example',['B26'])
Hope the script is useful, I am not responsible for any hair loss, money, gray hair or other good / bad things which happen. The script is extremely useful for me and I thought I should try to share it. Oh I would like to acknowledge xlswrite for the basic structure, I just hacked in a few more lines, I cannot be bothered looking up the file ID.
Cita come
Chandramouli Chandrasekaran (2024). xlswritespec (https://www.mathworks.com/matlabcentral/fileexchange/8345-xlswritespec), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Compatibilità della piattaforma
Windows macOS LinuxCategorie
Tag
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.
Versione | Pubblicato | Note della release | |
---|---|---|---|
1.0.0.0 |