代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/214372/15104467
txt~ readme.txt~
Kalman filter toolbox written by Kevin Murphy, 1998.
See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details.
This version was last updated on 18 January 2003.
Installation
------------
www.eeworm.com/read/214372/15104496
txt readme.txt
Kalman filter toolbox written by Kevin Murphy, 1998.
See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details.
Installation
------------
1. Install KPMtools from http://www.ai.mit.edu/~mu
www.eeworm.com/read/213940/15121888
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.4.
echo on ;
a=[-10,-5,-4,-2,0,1,3,5,10];
for i=1:length(a)-1
y(i)=centroid('normal',a(i),a(i+1),0.001,0,1);
echo off ;
end
y %y是本人加上的
www.eeworm.com/read/213917/15122426
c engwindemo.c
/*
* engwindemo.c
*
* This is a simple program that illustrates how to call the MATLAB
* Engine functions from a C program for windows
*
* Copyright 1984-2003 The MathWorks, Inc.
*/
/*
www.eeworm.com/read/213502/15133065
txt readme.txt
The Finite Element Method Using MATLAB, 2nd Edition
System requirements:
Windows 95, 98, or NT 4.0
Minimum - 640x480 256 color display
Recommended - 800x600 16-bit or higher color display
12
www.eeworm.com/read/212811/15148664
txt readme.txt
file "README.TXT"
The package includes the main Matlab program DECOMP for non-stationary
and nonlinear vibration signal decomposition together with the program
PL.M for plotting the obtained deco
www.eeworm.com/read/212605/15151914
m householder.m
% 一个matlab的(Householder变换):
function [A,d]=HouseholderQR(A)
[m,n]=size(A);
I=diag(ones(m,1));
d=zeros(n,1);
for j=1:n
[v,b]=Householder(A(j:m,j));
A(j:m,j:n)=(I(j:m,j:m)-b*v*v')*A(j:m,j:n);
www.eeworm.com/read/212376/15157347
c circle_f_mex.c
/*
* MATLAB Compiler: 2.2
* Date: Tue Jun 25 12:26:00 2002
* Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
* "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/212376/15157423
c exm1_mex.c
/*
* MATLAB Compiler: 2.2
* Date: Tue Jun 25 12:31:25 2002
* Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
* "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ