代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/469123/6977824
m covlinone.m
function [A, B] = covLINone(logtheta, x, z);
% Linear covariance function with a single hyperparameter. The covariance
% function is parameterized as:
%
% k(x^p,x^q) = x^p'*inv(P)*x^q + 1./t2;
%
% wh
www.eeworm.com/read/359744/6979467
m mdist.m
function y=mdist(p,c,b)
% This program is used to compute Mahalanobis distance
% p--r*q matrix,which is the incoming sample data
% c--r*s matrix, which is the center matrix
% b--r*s matrix, which
www.eeworm.com/read/467759/7000694
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/467759/7000730
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/467806/7001690
txt 例1.4.txt
例1.4 用全下标标识给矩阵元素赋值。
>> A=[1 3 5;2 4 6]
A =
1 3 5
2 4 6
>> A(3,3) % 提取A(3,3)的值。
??? Index exceeds matrix dimensions.
>> A(3,3)=9 % 给A(3,3)赋值。
A =
1
www.eeworm.com/read/467324/7009826
m ss_tbl31.m
Gold sequences for the table of problem 3.1 of Spread Spectrum Chapter
Note that the sequences are the columns of the below matrix not the rows,
so we have to take the transpose of the following m
www.eeworm.com/read/465437/7054993
h arisimageroutines1.h
// ArisImageRoutines1.h: interface for the ArisImageRoutines class.
//
// Author: Aris Adrianto S
// email: arisitb@yahoo.com
// home: http://arisitb.cjb.net
//
// "free is free, modify it as u
www.eeworm.com/read/140741/7069867
inl linearequation.inl
//LinearEquation.inl 线性方程(组)求解函数(方法)定义
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31
#ifndef _LINEAREQUATION_INL
#define _LINEAREQUATION_INL
//全选主元高斯消去法
template
int L
www.eeworm.com/read/172061/7074880
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
% --|-----------------------------