Created
May 28, 2016 14:01
-
-
Save kemingy/62dba7a9d9c5389b3de8af2c8e1622cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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