필터 지우기
필터 지우기

How to draw special figures like this:

조회 수: 1 (최근 30일)
Pramit Biswas
Pramit Biswas 2016년 8월 16일
편집: Thorsten 2016년 8월 16일
Suppose i have 3(N) boolean array: P1, P2, P3 with total 16 index in each array.
If it is 0 then gray or white will be shown, else some colour will be chosen.

채택된 답변

Thorsten
Thorsten 2016년 8월 16일
편집: Thorsten 2016년 8월 16일
val = [1 1 2 3 2 1 3 1 2 2 3 2 2 2 4 4];
col = [1 1 0; 1 0 0; 0 1 0; 0.5 0.5 0.5];
axes
hold on
for i = 1:numel(val)
bar(i, 1, 1, 'FaceColor', col(val(i), :));
end
set(gca, 'PlotBoxAspectRatio', [16 4 1])
axis off
axis tight
Use a different subplot for each pattern.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by