Skip to content

Instantly share code, notes, and snippets.

@kemingy
Created May 28, 2016 14:01
Show Gist options
  • Select an option

  • Save kemingy/62dba7a9d9c5389b3de8af2c8e1622cf to your computer and use it in GitHub Desktop.

Select an option

Save kemingy/62dba7a9d9c5389b3de8af2c8e1622cf to your computer and use it in GitHub Desktop.
figure;
hold on;
plot(x1, 'Color', [0.5, 0.5, 0.1], 'Marker', '^', 'LineStyle', 'none', 'LineWidth', 2);
plot(x2, 'Color', [0.5, 0.5, 0.1], 'Marker', '^', 'LineStyle', 'none', 'LineWidth', 2);
plot(x3, 'Color', [0.5, 0.5, 0.1], 'Marker', '^', 'LineStyle', 'none', 'LineWidth', 2);
plot(x4, 'Color', [0.5, 0.5, 0.1], 'Marker', '^', 'LineStyle', 'none', 'LineWidth', 2);
legend('#1', '#2', '#3', '#4');
for i = 1 : 5
line([0, 60], [label(i), label(i)], 'LineStyle', '-.');
end
grid on;
xlabel('');
ylabel('');
title('');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment