Effacer les filtres
Effacer les filtres

How to draw special figures like this:

1 vue (au cours des 30 derniers jours)
Pramit Biswas
Pramit Biswas le 16 Août 2016
Modifié(e) : Thorsten le 16 Août 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.

Réponse acceptée

Thorsten
Thorsten le 16 Août 2016
Modifié(e) : Thorsten le 16 Août 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.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by