複数の画像を1つのファイルに保存する方法は?

計算結果を複数のグラフに出力し,そのグラフを1つのファイル(csvファイルなど)に保存するためにはどのようにすればよいのでしょうか? また,セル1つ1つに画像を張り付けるようなことはできるのでしょうか?

댓글 수: 1

Image Analyst
Image Analyst 2016년 3월 28일
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?

댓글을 달려면 로그인하십시오.

 채택된 답변

Walter Roberson
Walter Roberson 2016년 3월 29일

0 개 추천

Graphs cannot be saved to csv files: only the data for graphs can be saved.

추가 답변 (1개)

Image Analyst
Image Analyst 2016년 3월 28일

0 개 추천

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

Math Damon
Math Damon 2016년 3월 29일
申し訳ありません.勘違いさせるような質問をしてしまいました. 私はmatlabで作成した複数のグラフをスプレッドシートのセル1つ1つに保存していくようなプログラムを作りたいです. スプレッドシートのセルを指定してそこに保存することは可能なのでしょうか?
Walter Roberson
Walter Roberson 2016년 3월 29일
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?

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Environment and Settings에 대해 자세히 알아보기

질문:

2016년 3월 28일

답변:

2016년 3월 29일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by