{
int ret = 0;
int iRWorkSize = 0;
- int worksize;
+ int worksize = 0;
double* pRWork = NULL;
doublecomplex* pWork = NULL;
int onlyOneLhs = (pBeta == NULL); /* if beta was not requested (only one lhs), memory was not provided for beta, but will be needed to scale alpha */
int iEigen2RealM(double* pData1, double* pData2, int iCols, double* pAlphaReal, double* pAlphaImg, double* pBeta, double* pRReal, double* pRImg, double* pLReal, double* pLImg)
{
int ret = 0;
- int worksize;
+ int worksize = 0;
double* pWork = NULL;
int onlyOneLhs = (pBeta == NULL);
/******************************************************************************
* Code below lifted from assembleEigenvectors.c
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
- * Copyright (C) 2008 - INRIA - Michaƫl Baudin
+ * Copyright (C) 2008 - INRIA - Micha\EBl Baudin
*
******************************************************************************/
//
int iSvdM(double* pData, int iRows, int iCols, int complexArg, int economy, double tol, double* pSV, double* pU, double* pS, double* pV, double* pRk)
{
int ret = 0, allocOK;
- int worksize;
+ int worksize = 0;
double* pWork = NULL;
double* pRWork = NULL;