代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/329680/12938943
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/243410/12943075
m gravcenters.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %%
%% Prof. Sclaroff's CS585 Image avd Video Processing
www.eeworm.com/read/142433/12945914
cpp ifft2.cpp
#include "NumMeth.h"
void fft( Matrix& RealA, Matrix& ImagA);
void ifft2( Matrix& RealA, Matrix& ImagA) {
// Routine to compute inverse two dimensional Fourier transform
// using FFT algorithm
// I
www.eeworm.com/read/142433/12945926
cpp dsmceq.cpp
// dsmceq - Dilute gas simulation using DSMC algorithm
// This version illustrates the approach to equilibrium
#include "NumMeth.h"
#include "SortList.h"
double rand( long& seed );
i
www.eeworm.com/read/142433/12945930
cpp newtn.cpp
// newtn - Program to solve a system of nonlinear equations
// using Newton's method. Equations defined by function fnewt.
#include "NumMeth.h"
void ge(Matrix a, Matrix b, Matrix& x);
void fnewt(M
www.eeworm.com/read/329331/12960709
m polyfit.m
function [p,S] = polyfit(x,y,n)
%p=polyfit(x,y,k)用k次多项式拟合向量数据(x,y)
%p返回多项式的降幂系数.当k>=n-1时,polyfit实现多项式插值.
%例如 用二次多项式拟合数据
% x | 0.1 0.2 0.15 0.0 -0.2 0.3
% --|-----------------------------
www.eeworm.com/read/142092/12962992
m nfam.m
function [nf, na, ex, E, N] = nfam(data,dt)
% The function NFAM calculates the modified Hilbert frequency and amplitude
% of data(n,k), where n specifies the length of time series, and
% k is
www.eeworm.com/read/142092/12963007
m nfa.m
function [nf, na, ex, E, N] = nfa(data,dt)
% The function NFA calculates the Hilbert frequency and amplitude
% of data(n,k), where n specifies the length of time series, and
% k is the IMF com
www.eeworm.com/read/142092/12963009
m nfa5.m
function [nf, na, ex, E, N] = nfa5(data,dt)
% The function NFA5 calculates the smoothed Hilbert frequency and amplitude
% of data(n,k), where n specifies the length of time series, and
% k is t
www.eeworm.com/read/142092/12963011
m nfam5.m
function [nf, na, ex, E, N] = nfam5(data,dt)
% The function NFAM5 calculates the smoothed modified Hilbert frequency and amplitude
% of data(n,k), where n specifies the length of time series,