代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/291067/6303006
m dftopm.m
function B = dftopm(N,M)
%DFTOPM generates a DFT operator matrix B such that the discrete 1D-Fourier
% transform of a spatial vector x is given by X = B*x. The DFT is defined
% in the same way as
www.eeworm.com/read/291067/6303017
m recdir.m
function M = recdir(recvar)
% RECVAR, A package for new data types in Matlab 4.
% (c) FOA 1997. See the file rvright.m for copyright notice.
%
% function M = recdir(recvar)
%
% Returns a Matlab matr
www.eeworm.com/read/291067/6303084
m helpd.m
function helpdbt(word)
%HELPD Displays Matlab helptext with "more on".
% * DBT, A Matlab Toolbox for Radar Signal Processing *
% (c) FOA 1994-2000. See the file dbtright.m for copyright notice.
www.eeworm.com/read/326342/6330939
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)高通滤波器
www.eeworm.com/read/257423/6356493
m c5ex5.m
% Illustration of the symbolic toolbox of MATLAB
% to implement the delay theorem
%
syms t
x0 = sym('Heaviside(t-0)');
x1 = sym('Heaviside(t-1)');
x2 = sym('Heaviside(t-2)');
x3 = sym('Heaviside(t-3)'
www.eeworm.com/read/494076/6387671
m speedup3.m
function Speedup3
% Speedup3.m
% 功能:比较具有相同功能的自定义函数与MATLAB内部函数的运行速度
%
% 加快MATLAB执行程序的方法之三:尽量使用MATLAB内部函数(包括各种工具箱函数)
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
%
www.eeworm.com/read/493669/6388790
txt readme.txt
COLDETECT version 1.0
A simple Matlab wrapper for the V-Collide collision detection library.
Author: Mykel J. Kochenderfer
Email: m.kochenderfer@gmail.com
Date: 25 January 2008
========
www.eeworm.com/read/492812/6409688
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/491675/6432399
dat bookinfo.dat
[General Information]
书名=MATLAB命令大全
作者=姚东 王爱民 冯峰 王朝阳
页数=601
SS号=10207058
出版日期=2000年06月第1版
www.eeworm.com/read/491039/6439474
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