How to build a 3D matrix?

1 回表示 (過去 30 日間)
Sarah Sadeq
Sarah Sadeq 2016 年 9 月 28 日
コメント済み: Sarah Sadeq 2016 年 9 月 29 日
I have a homework assignment that I just need help understanding. We are to make a 4x6x3 matrix, where each column of the image is a single color, in rainbow order (Red, Orange, Yellow, Green, Blue, Purple), but we must use for loops. I'm not quite sure what I'm doing, but I did write a code.
mat=zeros(4,6,3);
row1=[255,0,0];
row2=[0,255,0];
row3=[0,0,255];
for
img(:,col,1)=mycolormap(col,1);
img(:,col,2)=mycolormap(col,2);
img(:,col,3)=mycolormap(col,3);
end
please help me out. I'm new to Matlab and I'm little confused.
  2 件のコメント
John BG
John BG 2016 年 9 月 28 日
you mean a volume, you want to build a volume?
Sarah Sadeq
Sarah Sadeq 2016 年 9 月 29 日
I'd like to build Build a 4x6x3 matrix, where each column of the$ mage is a single color, in rainbow order

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2016 年 9 月 29 日
You are close in your approach. You would need
mycolormap = [row1; row2; row3]; %(and extend this for the 6 different colors)
And you would need to fix your for loop.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by