代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/372570/9503316
m layoutparset.m
function layoutpar=layoutparset(varargin)
%LAYOUTPARSET Link parameter configuration for WIM
% LAYOUTPAR=LAYOUTPARSET(NofMs,NofBs,SectPerBs,K) is a struct consisting
% of randomly generated ne
www.eeworm.com/read/372550/9503848
m randvec.m
function x=randvec(n,m,c)
%RANDVEC Generate gaussian random vectors X=(N,M,C)
% generates a random matrix of size (n,p) where p is the maximum dimension of m or c
% Each row of x is independent wi
www.eeworm.com/read/372550/9503928
m rdct.m
function y=rdct(x,n)
%RDCT Discrete cosine transform of real data Y=(X,N)
% Data is truncated/padded to length N.
%
% This routine is equivalent to multiplying by the matrix
%
% rdct(eye(n
www.eeworm.com/read/372523/9505144
m lsolve.m
function x = lsolve(A, b)
% x = lsolve(A, b) returns the solution to the equation Ax = b,
% where A is an n-by-b matrix and b is a column vector of
% length n (or a matrix with several such columns
www.eeworm.com/read/372507/9507250
cpp smatrix.cpp
// test formula based sparse matrix class
#include
#include "smatrix.h"
void main(void)
{
SparseMatrix A(20), B(20), C(20);
cin >> A;
cout
www.eeworm.com/read/372037/9523844
m toep.m
function mat=toep(column,row)
% TOEP Toeplitz matrix
%
% mat=toep(column,row)
%
% The length(column) x length(row) element toeplitz matrix is generated from the
% column and row vectors. If u
www.eeworm.com/read/372037/9524071
m nlgen.m
function y = nlgen (x, h, q)
%NLGEN generates the output of a second order Volterra system
% y = nlgen (x, h, q)
% y(n) = sum_{k} h(k) x(n-k) + sum_{k} sum_{l} q(k,l) x(n-k)x(n-l)
% the
www.eeworm.com/read/175521/9542519
m esttranslation2.m
function M = estTranslation2(im1,im2)
%
% function M = estAffine2(im1,im2)
%
% im1 and im2 are images
%
% M is 3x3 affine transform matrix: X' = M X
% where X=(x,y,1) is starting position in ho
www.eeworm.com/read/175317/9552343
m euclidean.m
function d = euclidean(a,b,df)
% EUCLIDEAN - computes Euclidean distance matrix
%
% E = euclidean(A,B)
%
% A - (DxM) matrix
% B - (DxN) matrix
% df = 1, force diagonals to be zero; 0 (defaul
www.eeworm.com/read/175157/9557128
m gravcenters.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %%
%% Prof. Sclaroff's CS585 Image avd Video Processing