チェンジセット 968
- コミット日時:
- 2008/08/13 00:21:20 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Statistics/src/net/goodmix/statistics/matrix/MathMatrix.as
r967 r968 1 package net.goodmix.statistics.matrix1 package net.goodmix.statistics.matrix 2 2 { 3 3 /** as3/Statistics/src/net/goodmix/statistics/matrix/MatrixObject.as
r964 r968 142 142 for (j = 0; j < _cols; j++) 143 143 { 144 newCol.push(0); 144 //newCol.push(0); 145 newCol.push(null); 145 146 } 146 147 matrix.push(newCol); … … 168 169 for (j = 0; j < _cols; j++) 169 170 { 170 matrix[i].push(0); 171 //matrix[i].push(0); 172 matrix[i].push(null); 171 173 } 172 174 } as3/Statistics/src/net/goodmix/statistics/multivariateAnalysis/QualificationIV.as
r965 r968 21 21 import net.goodmix.statistics.utils.Jacobi; 22 22 import net.goodmix.statistics.utils.MathUtil; 23 import org.flashdevelop.utils.FlashConnect24 23 // 25 24 public class QualificationIV … … 88 87 eigenvectors = jacobi.vectors; 89 88 eigenvectorsMatrix = new MatrixObject(eigenvectors); 90 FlashConnect.trace(eigenvectorsMatrix.toCSV());91 89 // 92 90 //固有値の上位2

