代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/228652/14371535
m mpolyval.m
function Y = mpolyval(P,X)
% MPOLYVAL - evaluate matrix polynomial
%
% Y = mpolyval(P,X)
%
% If X is a numerical or symbolic array, evaluate the matrix polynomial P
% at these values.
www.eeworm.com/read/228652/14371630
m set.m
function P = set(P,varargin)
% SET - set field of matrix polynomial
%
% P = set(P,'field1',value1,'field2',value2,...)
%
% This is the same as
%
% P.field1 = value1;
%
www.eeworm.com/read/228652/14371665
m tril.m
function P = tril(P,varargin)
% TRIL -- set upper triangle in matrix polynomial to zero
%
% P = tril(P)
% P = tril(P,k)
%
% Set all values above the kth diagonal to zero. This ex
www.eeworm.com/read/126550/14416914
m findnlargest.m
function INDEX = FindNLargest(X, N)
%FINDNLARGEST Find largest values in a matrix or a vector
% INDEX = FINDNLARGEST(X, N) find the N largest values of X
% and returns their indices in X.
%
www.eeworm.com/read/227639/14418665
c 逆矩阵.c
#define N 5 /*[注]:修改6为你所要的矩阵阶数*/
#include "stdio.h"
#include "conio.h"
/*js()函数用于计算行列式,通过递归算法实现*/
int js(s,n)
int s[][N],n;
{int z,j,k,r,total=0;
int b[N][N];/*b[N][N]用于存放,在矩阵s[
www.eeworm.com/read/227522/14421541
m acorf.m
function [AUTOCOV,stderr,lpq,qpval] = acorf(Z,N);
% Calculates autocorrelations for multiple data series.
% Missing values in Z (NaN) are considered.
% Also calculates Ljung-Box Q stats and p-valu
www.eeworm.com/read/227379/14429571
h decodeutil.h
#include
#include
#include
#include
int *ivector(int ilow,int ihigh);
int **imatrix(int ilow,int ihigh,int jlow,int jhigh);
double *vector(int ilow,i
www.eeworm.com/read/126037/14450665
sc ica.sc
# ica - Perform Independent Component Analysis, standalone-version
#
# Run the ICA algorithm of Bell & Sejnowski (1996) or the extended-ICA
# of Lee, Girolami & Sejnowski (1998). Original Matlab
www.eeworm.com/read/124783/14544734
cpp gauss-seigel-1.cpp
/*************************************************************
*这个程序采用高斯—赛德尔迭代法解线性方程组。
*程序设计要求:设计测试主程序
*测试线性方程:
* 10*x1+x2+2*x3=44
* 2*x1+10*x2+x3=51
* x1+2*x2+10*x3=61
* 解:x1=3,x2=4,x3=5
*
www.eeworm.com/read/124570/14558542
java costmatrix.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers