代码搜索:MatLAB
找到约 10,000 项符合「MatLAB」的源代码
代码结果 10,000
www.eeworm.com/read/374042/9422824
m addmypath.m
addpath d:/users/jang/matlab/toolbox/utility
addpath d:/users/jang/matlab/toolbox/dcpr
addpath d:/users/jang/matlab/toolbox/audioProcessing
addpath d:/users/jang/matlab/toolbox/miditoolbox
www.eeworm.com/read/177981/9425131
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/373828/9433297
c sin1500matl.c
//Sin1500MATL.c Generates sine from table created with MATLAB
#include "sin1500.h" //sin(1500) created with MATLAB
short i=0;
interrupt void c_int11()
{
output_sample(sin1500[i]); //o
www.eeworm.com/read/373828/9434014
c sin1500matl.c
//Sin1500MATL.c Generates sine from table created with MATLAB
#include "sin1500.h" //sin(1500) created with MATLAB
short i=0;
interrupt void c_int11()
{
output_sample(sin1500[i]); //o
www.eeworm.com/read/177349/9458548
m finish.m
button = questdlg('Ready to quit?', ...
'Exit Dialog','Yes','No','No');
switch button
case 'Yes',
disp('Exiting MATLAB');
%Save variables to matlab.mat
save
www.eeworm.com/read/177101/9469705
txt readme.txt
基于matlab的简易OCR程序。
具体可参加该文件夹内的CS585 Fall 1998 Project One.....
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);