diff options
author | imushir | 2016-03-02 12:12:02 +0530 |
---|---|---|
committer | imushir | 2016-03-02 12:12:02 +0530 |
commit | 3415acb6050605a91c58b7d78a44ffc5e1d9131f (patch) | |
tree | f7ec56bf828d287719623359b827cb8f6edd5387 /src/c/elementaryFunctions/logspace/dlogspaces.c | |
parent | 757411a93534281f006ce5e69777e4b410b4a225 (diff) | |
download | Scilab2C_fossee_old-3415acb6050605a91c58b7d78a44ffc5e1d9131f.tar.gz Scilab2C_fossee_old-3415acb6050605a91c58b7d78a44ffc5e1d9131f.tar.bz2 Scilab2C_fossee_old-3415acb6050605a91c58b7d78a44ffc5e1d9131f.zip |
added support of double datatype for logspace
Diffstat (limited to 'src/c/elementaryFunctions/logspace/dlogspaces.c')
-rw-r--r-- | src/c/elementaryFunctions/logspace/dlogspaces.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/logspace/dlogspaces.c b/src/c/elementaryFunctions/logspace/dlogspaces.c new file mode 100644 index 0000000..7970321 --- /dev/null +++ b/src/c/elementaryFunctions/logspace/dlogspaces.c @@ -0,0 +1,26 @@ +/* + Scilab2C FOSSEE IIT Bombay + */ + +#include "logspace.h" +#include<math.h> +void dlogspaces(double low_limit,double up_limit,double range_num,double *out) +{ + int j; + double temp = pow(10,low_limit); + double step_iterate = pow(10,((up_limit-low_limit)/(range_num-1))); + out[0] = pow(10,low_limit); //First value of output is equal to low_limit value + for(j=1; j<(double)range_num; j++) + { + out[j] = temp*step_iterate; + temp = out[j]; + if(j == (double)range_num-1 ) + { + out[j] = pow(10,((double)up_limit)); // Last value of output is equal to up_limit value + } + } + + + +} + |