summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/logspace
diff options
context:
space:
mode:
authorSiddhesh Wani2017-05-04 16:15:18 +0530
committerSiddhesh Wani2017-05-04 16:15:18 +0530
commitde82d12658979cd70439f977742f80fac9f6521f (patch)
treeeff661402e749b2402f5576271aefddd42be23fe /2.3-1/src/c/elementaryFunctions/logspace
parent472b2e7ebbd2d8b3ecd00b228128aa8a0bd3f920 (diff)
downloadScilab2C-de82d12658979cd70439f977742f80fac9f6521f.tar.gz
Scilab2C-de82d12658979cd70439f977742f80fac9f6521f.tar.bz2
Scilab2C-de82d12658979cd70439f977742f80fac9f6521f.zip
Basic functions and image processing working with MSVC on windows x64
Diffstat (limited to '2.3-1/src/c/elementaryFunctions/logspace')
-rw-r--r--2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c b/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c
index 3a9caf15..62802f77 100644
--- a/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c
+++ b/2.3-1/src/c/elementaryFunctions/logspace/dlogspacea.c
@@ -9,14 +9,16 @@
Organization: FOSSEE, IIT Bombay
Email: toolbox@scilab.in
*/
-
+#include <math.h>
+#include <stdlib.h>
#include "logspace.h"
-#include<math.h>
+
void dlogspacea(double *low_limit,int _row,double *up_limit,double range_num,double *out)
{
int i,j,k;
double temp;
- double step_iterate[_row]; /* for each row the spacing between two values is different.*/
+ double *step_iterate; /* for each row the spacing between two values is different.*/
+ step_iterate = (double*) malloc((double)_row*sizeof(double));
for(i=0;i<_row;i++)
{
step_iterate[i] = pow(10,((up_limit[i]-low_limit[i])/(range_num-1)));