필터 지우기
필터 지우기

Color maps and for loops

조회 수: 1 (최근 30일)
sweetdreams
sweetdreams 2015년 5월 4일
답변: Nobel Mondal 2015년 5월 4일
The color map, map , is to have the RGB values for four colors. I want to establish map as an array of zeros with a row for each color and three columns for the amounts of red, green, and blue. This is what I've got:
map = zeros(4,3)
Is that right?
Then using a for loop, I want to assign to each row of map the RGB values for a shade of red with red values from 1/4 to 4/4 = 1. I.E. each row should have a red value of i/4 and blue and green values of zero.
for i=1:map
map(4,end + rand(0.25,1));
end
^ That's what I've done and it obviously isn't right but I don't know how to fix it.

채택된 답변

Nobel Mondal
Nobel Mondal 2015년 5월 4일
I guess, this is what you're looking for:
myMap = zeros(4,3);
for i=1:4
myMap(i,1) = i/4;
end
firstColorMap = myMap(1,:);
secondColorMap = myMap(2,:); %etc

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by