代码搜索:协方差矩阵
找到约 10,000 项符合「协方差矩阵」的源代码
代码结果 10,000
www.eeworm.com/read/218114/4864297
m sumarize8_7_2.m
syms t s %定义基本符号变量
syms a b positive %对常数进行“限定性”设置
Mt = [dirac(t-a),heaviside(t-b);exp(-a*t)*sin(b*t),t^2*cos(3*t)]; %定义输入矩阵
MS = laplace(Mt,
www.eeworm.com/read/318233/3570996
m program_14_12.m
% 定义劳伦矩阵
M1 = laurmat(eye(2,2))
Z = laurpoly(1,1);
M2 = laurmat({1 Z;0 1})
% 计算劳伦多项式
P = M1 * M2
d = det(P)
www.eeworm.com/read/309176/3706581
cs sample3_3.cs
/*
* 示例程序Sample3_3: Matrix类的实矩阵求逆的全选主元高斯-约当法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static void Main(stri
www.eeworm.com/read/309176/3706603
cs sample3_4.cs
/*
* 示例程序Sample3_4: Matrix类的复矩阵求逆的全选主元高斯-约当法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static void Main(stri
www.eeworm.com/read/309176/3706609
cs sample3_6.cs
/*
* 示例程序Sample3_6: Matrix类的托伯利兹矩阵求逆的埃兰特方法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static void Main(string
www.eeworm.com/read/304591/3796202
m sumarize8_7_2.m
syms t s %定义基本符号变量
syms a b positive %对常数进行“限定性”设置
Mt = [dirac(t-a),heaviside(t-b);exp(-a*t)*sin(b*t),t^2*cos(3*t)]; %定义输入矩阵
MS = laplace(Mt,
www.eeworm.com/read/286417/4039462
java sample3_12.java
/*
* 示例程序Sample3_12: Matrix类的一般实矩阵的奇异值分解
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
public class Sample3_12
{
public static void main(String[] args)
{
www.eeworm.com/read/286417/4039515
java sample3_8.java
/*
* 示例程序Sample3_8: Matrix类的求矩阵秩的全选主元高斯消去法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
public class Sample3_8
{
public static void main(String[] args)
{
www.eeworm.com/read/281859/4112246
java md5_encoding.java
package ch22;
import java.lang.reflect.*;
/***
*
* @author Administrator
*
* MD5数据加密
*/
public class MD5_Encoding {
// 一个4*4矩阵,且是只读的
static final int S11 = 7;
static fin
www.eeworm.com/read/443730/1738417
cpp test.cpp
#include "iostream.h"
#include "engine.h"
#include "string.h"
void main()
{ int i,j;
//定义matlab引擎指针及变量
Engine *ep;
mxArray *T,*F;
//定义矩阵数组
double data[3][3]={{11.2,20.5,12.3},{10.8