代码搜索:Mapack
找到约 19 项符合「Mapack」的源代码
代码结果 19
www.eeworm.com/read/178382/9401309
cs choleskydecomposition.cs
// ----------------------------------------------
// Lutz Roeder's Mapack for .NET, September 2000
// Adapted from Mapack for COM and Jama routines.
// http://www.aisto.com/roeder/dotnet
// ------
www.eeworm.com/read/178382/9401312
cs matrix.cs
// ----------------------------------------------
// Lutz Roeder's Mapack for .NET, September 2000
// Adapted from Mapack for COM and Jama routines.
// http://www.aisto.com/roeder/dotnet
// ------
www.eeworm.com/read/178382/9401316
cs ludecomposition.cs
// ----------------------------------------------
// Lutz Roeder's Mapack for .NET, September 2000
// Adapted from Mapack for COM and Jama routines.
// http://www.aisto.com/roeder/dotnet
// ------
www.eeworm.com/read/178382/9401320
cs singularvaluedecomposition.cs
// ----------------------------------------------
// Lutz Roeder's Mapack for .NET, September 2000
// Adapted from Mapack for COM and Jama routines.
// http://www.aisto.com/roeder/dotnet
// ------
www.eeworm.com/read/178382/9401322
cs qrdecomposition.cs
// ----------------------------------------------
// Lutz Roeder's Mapack for .NET, September 2000
// Adapted from Mapack for COM and Jama routines.
// http://www.aisto.com/roeder/dotnet
// ------
www.eeworm.com/read/222767/14674728
cs kalmanfilter.cs
using System;
using System.Collections.Generic;
using System.Text;
using Mapack;
namespace Kalman
{
class KalmanFilter
{
Matrix X = null; // State Variables
Matri
www.eeworm.com/read/115619/15005997
java traficlight_ex.java
package mapack;
import java.awt.*;
import java.awt.event.*;
////////////////////
public class TraficLight_Ex
{
public static void main(String args[])
{
TraficRun t=new TraficRun();
t.d
www.eeworm.com/read/222767/14674711
cs demo.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Mapack;
namespace K
www.eeworm.com/read/178382/9401294
cs example.cs
using System;
using Mapack;
class Example
{
public static void Main(String[] args)
{
Matrix A = new Matrix(3, 3);
A[0,0] = 2.0; A[0,1] = 1.0; A[0,2] = 2.0;
A[1,0] = 1.0;