Writing data into an array
조회 수: 1 (최근 30일)
이전 댓글 표시
답변 (1개)
Wayne King
2012년 4월 29일
Can you be more specific what you mean by store? Images in MATLAB are naturally matrices, either 2-D matrices, or 3-D for something like an RGB image. For example:
imdata = imread('ngc6543a.jpg');
You can store the result in a .mat file, or you can use imwrite to write a specific image format, or a number of other more basic file writing routines.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!