Changeset 3115 for trunk/psLib/src/math/psPolynomial.c
- Timestamp:
- Feb 2, 2005, 2:54:13 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psPolynomial.c (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psPolynomial.c
r3097 r3115 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.8 5$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-0 1-26 20:47:41$9 * @version $Revision: 1.86 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-02-03 00:54:10 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 1202 1202 PS_VECTOR_CHECK_TYPE(x, PS_TYPE_F32, NULL); 1203 1203 1204 psVector *tmp ;1205 psVector *myX ;1204 psVector *tmp = NULL; 1205 psVector *myX = NULL; 1206 1206 psS32 i; 1207 1207 … … 1244 1244 PS_VECTOR_CHECK_TYPE(y, PS_TYPE_F32, NULL); 1245 1245 1246 psVector *tmp ;1247 psVector *myX ;1248 psVector *myY ;1246 psVector *tmp = NULL; 1247 psVector *myX = NULL; 1248 psVector *myY = NULL; 1249 1249 psS32 i; 1250 1250 psS32 vecLen=x->n; … … 1302 1302 PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F32, NULL); 1303 1303 1304 psVector *tmp ;1305 psVector *myX ;1306 psVector *myY ;1307 psVector *myZ ;1304 psVector *tmp = NULL; 1305 psVector *myX = NULL; 1306 psVector *myY = NULL; 1307 psVector *myZ = NULL; 1308 1308 psS32 i; 1309 1309 psS32 vecLen=x->n; … … 1370 1370 PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F32, NULL); 1371 1371 1372 psVector *tmp ;1373 psVector *myW ;1374 psVector *myX ;1375 psVector *myY ;1376 psVector *myZ ;1372 psVector *tmp = NULL; 1373 psVector *myW = NULL; 1374 psVector *myX = NULL; 1375 psVector *myY = NULL; 1376 psVector *myZ = NULL; 1377 1377 psS32 i; 1378 1378 psS32 vecLen=x->n; … … 1603 1603 PS_VECTOR_CHECK_TYPE(x, PS_TYPE_F64, NULL); 1604 1604 1605 psVector *tmp ;1606 psVector *myX ;1605 psVector *tmp = NULL; 1606 psVector *myX = NULL; 1607 1607 psS32 i; 1608 1608 … … 1648 1648 PS_VECTOR_CHECK_TYPE(y, PS_TYPE_F64, NULL); 1649 1649 1650 psVector *tmp ;1651 psVector *myX ;1652 psVector *myY ;1650 psVector *tmp = NULL; 1651 psVector *myX = NULL; 1652 psVector *myY = NULL; 1653 1653 psS32 i; 1654 1654 psS32 vecLen=x->n; … … 1710 1710 PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F64, NULL); 1711 1711 1712 psVector *tmp ;1713 psVector *myX ;1714 psVector *myY ;1715 psVector *myZ ;1712 psVector *tmp = NULL; 1713 psVector *myX = NULL; 1714 psVector *myY = NULL; 1715 psVector *myZ = NULL; 1716 1716 psS32 i; 1717 1717 psS32 vecLen=x->n; … … 1782 1782 PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F64, NULL); 1783 1783 1784 psVector *tmp ;1785 psVector *myW ;1786 psVector *myX ;1787 psVector *myY ;1788 psVector *myZ ;1784 psVector *tmp = NULL; 1785 psVector *myW = NULL; 1786 psVector *myX = NULL; 1787 psVector *myY = NULL; 1788 psVector *myZ = NULL; 1789 1789 psS32 i; 1790 1790 psS32 vecLen=x->n;
Note:
See TracChangeset
for help on using the changeset viewer.
