Skip to content

Instantly share code, notes, and snippets.

@c1b3rh4ck
Last active December 14, 2015 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save c1b3rh4ck/5030075 to your computer and use it in GitHub Desktop.
Save c1b3rh4ck/5030075 to your computer and use it in GitHub Desktop.
Progressive plot...of eia
%feedback:hfjimenez@utp.edu.co
clc;
clear all;
d=input('Enter the decade');
n=input('Enter tolerance factor En,where n is {3,192}:');
for i=1:n;
R(i)=d*10^(i/n);
end;
plot(R,'r--');%red ploting
grid on;%grid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment