Last active
December 14, 2015 04:39
-
-
Save c1b3rh4ck/5030075 to your computer and use it in GitHub Desktop.
Progressive plot...of eia
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
%feedback:[email protected] | |
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