代码搜索:Matlab仿真
找到约 10,000 项符合「Matlab仿真」的源代码
代码结果 10,000
www.eeworm.com/read/371808/9536001
txt readgssi.m.txt
readgssi.m
The function should work with MATLAB v 5 and above. Please do not hesitate to contact me with any ideas for improving it or to point out any "bugs" that you find.
www.eeworm.com/read/371808/9536007
txt loadrd3.m.txt
loadrd3.m
This function reads RAMAC Mala data into MATLAB. It presents the user with a graphical file selection tool to choose the right data file
www.eeworm.com/read/371808/9536011
txt readmala.m.txt
readmala.m
The function should work with MATLAB v 5 and above. Please do not hesitate to contact me with any ideas for improving it or to point out any bugs that you find.
www.eeworm.com/read/371743/9538189
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
clear
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/371709/9540812
readme_octave
As of version 1.02 SegyMAT is intended to work with Octave version >2.1.64
If you have an older octave version installed you may need to :
1) change line (app 399) in ReadSegy
from : if (outtrace==1
www.eeworm.com/read/175157/9557121
txt readme.txt
基于matlab的简易OCR程序。
具体可参加该文件夹内的CS585 Fall 1998 Project One.....
www.eeworm.com/read/371250/9560055
c sba.c
/* ////////////////////////////////////////////////////////////////////////////////
//
// Matlab MEX file for sba's simple drivers
// Copyright (C) 2007-2008 Manolis Lourakis (lourakis at ics forth
www.eeworm.com/read/371250/9560070
txt readme.txt
**************************************************************
Matlab MEX interface to sba's simple drivers
Manolis Lourakis, November 2007
**********************
www.eeworm.com/read/170339/9809341
txt readme.txt
基于matlab的简易OCR程序。
具体可参加该文件夹内的CS585 Fall 1998 Project One.....
www.eeworm.com/read/170203/9814764
m p0312.m
I=imread('blood1.tif');
imshow(I);
f=double(I); % 数据类型转换,MATLAB不支持图像的无符号整型的计算
g=fft2(f); % 傅立叶变换
g=fftshift(g); % 转换数据矩阵
[M,N]=size(g);
nn=2; % 二阶巴特沃斯(Butterworth)高通滤波器