代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/164554/10103421
m chebdif.m
function [x, DM] = chebdif(N, M)
% The function DM = chebdif(N,M) computes the differentiation
% matrices D1, D2, ..., DM on Chebyshev nodes.
%
% Input:
% N: Size of differentiation ma
www.eeworm.com/read/360311/10103441
cpp xt6-10.cpp
#include
using namespace std;
int main()
{void change(int *p);
int a[5][5],*p,i,j;
cout
www.eeworm.com/read/164554/10103461
m sincdifft.m
function Dmf = sincdifft(f, M, h)
% Dmf = sincdifft(f, M, h) computes the m-th derivative of the function
% f(x) using the sinc differentiation process. The function is
% assumed to be defined
www.eeworm.com/read/359960/10113532
m kmeanscluster.m
function y=kMeansCluster(m,k,isRand)%%%%%%%%%%%%%%%%% % kMeansCluster - Simple k means clustering algorithm
www.eeworm.com/read/164260/10120774
m l2_distance.m
function d = L2_distance(a,b,df)
% L2_DISTANCE - computes Euclidean distance matrix
%
% E = L2_distance(A,B)
%
% A - (DxM) matrix
% B - (DxN) matrix
% df = 1, force diagonals to be zero; 0 (
www.eeworm.com/read/163929/10139554
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/163928/10139557
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/163927/10139572
m kmr.m
function [M]=kmr(img,p)
% M is a matrix of complex moments up to the p-th order of the image img
% img - image matrix
% \mu{pq} = M(p+1,q+1)
w=cm(img,2*p);
[n1,n2]=size(img);
for r=1:p
www.eeworm.com/read/163927/10139580
m cm.m
function [M]=cm(img,r)
% M is a matrix of central moments up to the r-th order of the image img
% img - image matrix
% \mu{pq} = M(p+1,q+1)
[n1,n2]=size(img);
m00 =sum(sum(img));
w=lins