代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/204090/15344717
m myhilb.m
function[A,B]=myhilb(n,m)
% MYHILB 生成一个Hilbert矩阵
% [A,B]=myhilb(n,m)
% where
% n,m are size of the Hilbert matrix,if only one
% argument given,then a square matrix is generated
% A is the Hil
www.eeworm.com/read/204090/15344723
m myhilb1.m
function[A,B]=myhilb(n,m)
%问题:生成一个Hilbert矩阵,该矩阵是一个n×m矩阵,它的第i行
%第j列的元素为1/(i+j-1)。如果想在编写的函数中实现下面几点:
%1)如果只给出一个输入参数,则会自动生成一个方阵,即有m=n
%2)如果想返回两个参数A和B,则返回的B矩阵为A矩阵的平方,
% 即B=A'A
%3)在函数中给出合适的帮助信息,包括基本 ...
www.eeworm.com/read/201792/15396274
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/201477/15407244
out bboard.out
Enter 8 x 5 net matrix
Minimum density is 4
Optimal arrangement is
2 3 4 5 1 6 7 8
www.eeworm.com/read/201477/15407476
out bbboard.out
Enter net matrix
Min density is 4
Optimal arrangement is
2 8 7 3 1 5 6 4
www.eeworm.com/read/201477/15407755
out mns.out
matrix size is
0 0 0 0 0 0 0 1 1 1
0 0 0 0 0 0 1 1 1 1
0 0 0 1 1 1 1 1 1 1
0 1 1 1 1 1 1 1 1 1
0 1 1 1 2 2 2 2 2 2
1 1 1 1 2 2 2 2 2 2
1 1 1 1 2 2 2 2 3 3
1 1 2 2 2 2 2 2 3 3
1 1 2 2
www.eeworm.com/read/201244/15412209
m starchannelestimation.m
function STARChannelEstimation();
%************************************************************************
% STARChannelEstimation()
%
% Comments: The purpose of this function is to perform STAR
www.eeworm.com/read/201218/15413197
m latentlssvm.m
function [zt,model] = latentlssvm(varargin)
% Calculate the latent variables of the LS-SVM classifier at the given test data
%
% >> Zt = latentlssvm({X,Y,'classifier',gam,sig2,kernel}, {alpha,b}, Xt)
www.eeworm.com/read/200913/15420087
m mat2dceb.m
function B=mat2DCEB(N,t);
%This takes a picture matrix of magnitudes N and a threshold t the
%matrix is then broken up into 8x8 tiles then transformed using the DCT
% the results are rounded for a sli
www.eeworm.com/read/200913/15420088
m std_stegcompress.m
function V=std_stegcompress(B)
%this function takes a "tiled" DCT matrix and converts it into
%one long string that wraps around. The string is a "compressed"
%version of the tiled matrix. It first t