Skip to content

Instantly share code, notes, and snippets.

@thiagao0860
Last active May 11, 2022 15:19
Show Gist options
  • Save thiagao0860/bb1607f9e31632c5191a42ad01ced6bc to your computer and use it in GitHub Desktop.
Save thiagao0860/bb1607f9e31632c5191a42ad01ced6bc to your computer and use it in GitHub Desktop.
Subplot Utilization example
#format: subplot(y_size, x_size, position)
subplot(2,1,1);
plot(z);
axis([-2 150 -1 30]);
grid;
subplot(2,1,2);
stem(zp);
axis([-2 153 -1 30]);
grid;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment