複数の画像を1つのファイルに保存する方法は?
Ältere Kommentare anzeigen
計算結果を複数のグラフに出力し,そのグラフを1つのファイル(csvファイルなど)に保存するためにはどのようにすればよいのでしょうか? また,セル1つ1つに画像を張り付けるようなことはできるのでしょうか?
1 Kommentar
Image Analyst
am 28 Mär. 2016
Approximate translation:
I output the calculation result into multiple graphs. How do I save the graph one of files (such as csv file)? Also, can you do things like pasting an image into one single cell?
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 28 Mär. 2016
You can save data to a csv file with csvwrite()
csvwrite(yourData, fullFileName);
You can put an image into a cell with braces:
myCell = {myImageVariable};
2 Kommentare
Math Damon
am 29 Mär. 2016
Walter Roberson
am 29 Mär. 2016
Approximate translation:
I'm sorry. I have a question, such as to misunderstanding. I want to make a program like going to save multiple graphs created in matlab to one single cell 1 of the spreadsheet. What is it possible to save in there to specify a cell in the spreadsheet?
Kategorien
Mehr zu Environment and Settings finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!