代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/444799/7606465
c matmult.c
/*
** Multiply two matrices together.
*/
void
matrix_multiply( int *m1, int *m2, register int *r,
int x, int y, int z )
{
register int *m1p;
register int *m2p;
register int k;
int
www.eeworm.com/read/444091/7618107
c matmult.c
/*
** Multiply two matrices together.
*/
void
matrix_multiply( int *m1, int *m2, register int *r,
int x, int y, int z )
{
register int *m1p;
register int *m2p;
register int k;
int
www.eeworm.com/read/439653/7703982
m mean.m
function y = mean(x,dim) %函数定义行,注意函数名称必须与文件名称相同
%MEAN Average or mean value.——H1帮助行
% For vectors, MEAN(X) is the mean value of the elements in X. For
% matrices, MEAN(X) is a row vector con
www.eeworm.com/read/439271/7713199
m mulcp.m
function [P]=mulcp(P1,P2,typ)
% MULCP Multiplication of two complex matrices.
% MULCP(P1,P2) produces the corrleated multiplication of P1 and P2.
%
% MULCP(P1,P2,FLAG) produces the use
www.eeworm.com/read/438370/7732073
m mean.m
function y = mean(x,dim) %函数定义行,注意函数名称必须与文件名称相同
%MEAN Average or mean value.——H1帮助行
% For vectors, MEAN(X) is the mean value of the elements in X. For
% matrices, MEAN(X) is a row vector con
www.eeworm.com/read/437944/7739080
m cum2x.m
function y_cum = cum2x (x,y, maxlag, nsamp, overlap, flag)
%CUM2X Cross-covariance
% y_cum = cum2x (x,y,maxlag, samp_seg, overlap, flag)
% x,y - data vectors/matrices with identical dimensi
www.eeworm.com/read/436521/7768649
c matmult.c
/*
** Multiply two matrices together.
*/
void
matrix_multiply( int *m1, int *m2, register int *r,
int x, int y, int z )
{
register int *m1p;
register int *m2p;
register int k;
int
www.eeworm.com/read/197646/7983447
m mean.m
function y = mean(x,dim) %函数定义行,注意函数名称必须与文件名称相同
%MEAN Average or mean value.——H1帮助行
% For vectors, MEAN(X) is the mean value of the elements in X. For
% matrices, MEAN(X) is a row vector con
www.eeworm.com/read/296909/8072964
m mtimes.m
function r = mtimes(obj1, obj2)
% GPVAR/MTIMES Implements '*' for GP variables.
%
sz1 = size(obj1); sz2 = size(obj2);
if( sz1(2) ~= sz2(1) )
error(['Cannot multiply vectors or matrices with incomp
www.eeworm.com/read/296909/8073070
m mtimes.m
function r = mtimes(obj1, obj2)
% MONOMIAL/MTIMES Implement '*' for monomial objects.
%
sz1 = size(obj1); sz2 = size(obj2);
if( sz1(2) ~= sz2(1) )
error(['Cannot multiply vectors or matrices with