Filter löschen
Filter löschen

How to draw special figures like this:

1 Ansicht (letzte 30 Tage)
Pramit Biswas
Pramit Biswas am 16 Aug. 2016
Bearbeitet: Thorsten am 16 Aug. 2016
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.

Akzeptierte Antwort

Thorsten
Thorsten am 16 Aug. 2016
Bearbeitet: Thorsten am 16 Aug. 2016
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.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by