代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/446975/7561922
m diffsnorm.m
function snorm = diffsnorm(A,U,S,V,its)
%DIFFSNORM 2-norm accuracy of an approx. to a matrix.
%
%
% snorm = diffsnorm(A,U,S,V) computes an estimate snorm of the spectral
% norm (the oper
www.eeworm.com/read/443377/7633959
txt readme.txt
Instructions for use:
To use the Face detection program you need to set path in matlab to the bin directory of this zip file
"FaceDetect.dll" is used by versions earlier than 7.1 while "FaceDetect
www.eeworm.com/read/442715/7645948
txt floyd.txt
无向图求最短路的floyd算法通用matlab程序
%floyd算法通用程序,输入a为赋权邻接矩阵
%输出为距离矩阵D,和最短路径矩阵path
function [D,path]=floyd(a)
n=size(a,1);
D=a;
path=zeros(n,n);
for i=1:n
for j=1:n
if D(i,j)~=inf
www.eeworm.com/read/440652/7684392
dat bookinfo.dat
[General Information]
书名=现代通信系统——使用matlab
作者=
页数=390
SS号=0
出版日期=
www.eeworm.com/read/299923/7820141
txt readme.txt
DIGITAL SIGNAL PROCESSING USING MATLAB
--------------------------------------
By Proakis and Ingle, 1998
MS-DOS Diskette Contents
------ -------- --------
The diskette contains a
www.eeworm.com/read/399907/7823307
h matlabeng.h
#ifndef _MATLAB_ENGINE_H_
#define _MATLAB_ENGINE_H_
////////////////////////////////////////////////////////////////////////////
// Copyright : 27 May 2003
//
// Email: a.riazi@misbah3com.com
www.eeworm.com/read/399803/7835366
txt readme_ncutclustering.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Normalized Cut Clustering Code %
% %
% Timothee Cour (UPENN), Stella Yu
www.eeworm.com/read/299178/7881187
m optimoptiongetfields.m
function optimfields = optimoptiongetfields
%OPTIMOPTIONGETFIELDS Fieldnames of options in Optimization Toolbox but not in
% MATLAB.
%
% This is a helper function for OPTIMSET and OPTIMGET.
%
www.eeworm.com/read/433751/7911355
txt readme.txt
This set of files contains the Matlab code
for VCA algorithm describe in the paper:
Jos
www.eeworm.com/read/197958/7960942
m randn.m
%R=randn(m,n) 生成标准正态分布的m行n列随机矩阵
%RANDN Normally distributed random numbers.
% RANDN(N) is an N-by-N matrix with random entries, chosen from
% a normal distribution with mean zero and variance