This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
統計のクリア確率を100%にしておきたい方向け。 | |
クロンダイクは稀にやり直しを繰り返しても詰むことがあるようです。 | |
それ以外は詰んだことはありません。 | |
以下のフォルダ内から必要なファイルを削除します。 | |
%userprofile%\AppData\Local\Packages\Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe\LocalState\UserData\[数字/Guest]\GameProgress | |
お勧めしません。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static public Matrix GaussNewtonMethod(Matrix Jacobian, Matrix EnergyVector, Matrix StatusVector,double ZeroTolerance=1e-10) | |
{ | |
Matrix M1 = Jacobian.Duplicate(); | |
M1.Transpose(); | |
Matrix M2 = M1 * Jacobian; | |
M2.Invert(ZeroTolerance); | |
M1 = M1 * EnergyVector; | |
M1 = M2 * M1; | |
M1.Scale(-1); | |
return M1; |
NewerOlder