Array of Matrices.?
Show older comments
Hi, I'm a complete novice to MATLAB. I'm reading a few images and want to save their matrix value in an array. Every image is 576x576px and theres about 100 of them.
Also, how do you multiply a uint8 matrix with a double matrix without losing image quality?
Answers (2)
the cyclist
on 3 Aug 2011
0 votes
Regarding your first question: MATLAB supports N-d arrays, so you can store a variable as 576x576x100.
Walter Roberson
on 3 Aug 2011
0 votes
1 Comment
Walter Roberson
on 4 Aug 2011
instead of using double(A), I suggest you use im2double(A)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!