代码搜索:Matrices

找到约 3,616 项符合「Matrices」的源代码

代码结果 3,616
www.eeworm.com/read/351636/3104146

h rs.h

/*: Computes eigenvalues and eigenvectors of a real symmetric matrix */ extern int v3p_netlib_rs_( v3p_netlib_integer v3p_netlib_const *nm, /*!< (IN) leading dimension of matrices */ v3p_netlib
www.eeworm.com/read/394381/8227370

m std.m

function y = std(x,flag,dim) %列状数据标准差 %例如 % A=[11 4 0.2;22 3 0.5;0 3 0.4]; % std(A) % %STD Standard deviation. % For vectors, STD(X) returns the standard deviation. For matrices, %
www.eeworm.com/read/393518/8280733

m rotqc2mc.m

function mc=rotqc2mc(qc) %ROTQC2MC converts a matrix of complex quaternion vectors to quaternion matrices % Inputs: % % QC(2m,n) mxn matrix of real quaternion vectors (each 2x1) % % Outpu
www.eeworm.com/read/393518/8281070

m rotqr2mr.m

function mr=rotqr2mr(qr) %ROTQR2MR converts a matrix of real quaternion vectors to quaternion matrices % Inputs: % % QR(4m,n) mxn matrix of real quaternion vectors (each 4x1) % % Outputs:
www.eeworm.com/read/265723/11255474

m rat.m

function [N,D] = rat(X,tol) %RAT Rational approximation. % [N,D] = RAT(X,tol) returns two integer matrices so that N./D % is close to X in the sense that abs(N./D - X)
www.eeworm.com/read/265447/11264074

html mod2convert.html

Modulo-2 Matrix Sparse/Dense Conversion Modulo-2 Matrix Sparse/Dense Conversion The routines below convert modulo-2 matrices between the
www.eeworm.com/read/334951/12558780

dat matrx2.dat

FILE OF TRIDIAGONAL MATRICES FOR PROGRAM 'TRIDAG' Dimension of matrix 3 Diagonal elements (N) 1.0 2.0 3.0 Super-diagonal elements (N-1) 2.0 3.0 Sub-diagonal elements (N-1) 2.0 3.0 Right-hand
www.eeworm.com/read/334860/12567834

m std.m

function y = std(x,flag,dim) %列状数据标准差 %例如 % A=[11 4 0.2;22 3 0.5;0 3 0.4]; % std(A) % %STD Standard deviation. % For vectors, STD(X) returns the standard deviation. For matrices, %
www.eeworm.com/read/236062/14034080

html stdize.html

R: Standardization of Data Matrices
www.eeworm.com/read/201477/15407582

cpp madd.cpp

// matrix addition #include #include "make2db.h" template void Add( T **a, T **b, T **c, int rows, int cols) {// Add matrices a and b to obtain matrix c. for (int i