代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/265251/11272152
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/265251/11272174
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/410656/11272794
readme
This distribution contains the KDTREE, KDTREEIDX and KDRANGEQUERY functions.
Included are the source code files in kdtree/src, as well as precompiled
mex files for the following systems:
- Mac OS
www.eeworm.com/read/410020/11304010
txt code.txt
行程编码的matlab实现:
I=imread('name.gif');
[m,n]=size(I);
c=I(1,1);E(1,1)=1;E(1,2)=1;E(1,3)=c;
t1=2;
for k=1:m
for j=1:n
if(not(and(k==1,j==1)))
if(not(I(k,j)==c))
www.eeworm.com/read/264420/11315728
m fil.m
function [out]=fil(in,f);
%
% Filters the data using a first order filter
%
% [out]=fil(in,f);
%
% f is a vector containing the filter constants
%
% Updated to use MATLAB's built in filter rou
www.eeworm.com/read/264046/11331780
m captdemo.m
function captdems
% CAPTDEMO Captain Toolbox demonstrations
%
% Type 'captdemo' at the command line to browse available demos
% Copyright (c) 2006 by CRES, Lancaster University, United Kingdom
www.eeworm.com/read/263879/11338227
m rand.m
%R=rand(m,n) 生成(0,1)上均匀分布的m行n列随机矩阵
%RAND Uniformly distributed random numbers.
% RAND(N) is an N-by-N matrix with random entries, chosen from
% a uniform distribution on the interval (0.0,1.0
www.eeworm.com/read/409142/11345093
c simpleeng.c
/*necessory header file*/
#include "engine.h"
#include "stdio.h"
#include "conio.h"
#define BUFFERLEN 256
/*main function*/
void main()
{
Engine *ep;
char cmd[BUFFERLEN];
int i=0
www.eeworm.com/read/409085/11358761
readme
-----------------------------------------
--- MATLAB/OCTAVE interface of LIBSVM ---
-----------------------------------------
Table of Contents
=================
- Introduction
- Installation
- Usag
www.eeworm.com/read/263248/11369924
m hc721.m
%《数字信号处理教程——MATLAB释义与实现》第七章例7.2.1程序hc721
% 幅频特性与符幅特性的区别
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
clear
b=[-1,2,4,2,-1];a=1; % 给定滤波器系数向量
[H,w]=freqz(b,a); % 求频率特性
subplot(2,2,1),p