代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/464351/7164851
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/464101/7169702
m m4ustp.m
% M-file for the second part of Project 4 on linearized analysis
% in Chapter 6 to obtain the unit step response of the motor
% transfer function, numG/denG.
% It can only be used after the tra
www.eeworm.com/read/463748/7175982
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/463748/7176009
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
www.eeworm.com/read/463564/7178242
m samp3_1_1.m
%Samp3_1_1
clear all %将工作空间中的所有变量清除
N=256;dt=0.02; %数据的个数和采样间隔
n=0:N-1;t=n*dt; %序号序列和时间序列
x=sin(2*pi*t)+0.5*sin(2*pi*5*t); %信号加得到的合成信号
m=N;
www.eeworm.com/read/462153/7208390
readme
IMPLEMENTATION OF THE DIFFUSION-BASED APPROACH TO SHAPE FROM DEFOCUS
Paolo Favaro
p.favaro@hw.ac.uk
This is a Matl
www.eeworm.com/read/462149/7208571
readme
IMPLEMENTATION OF THE I-DIVERGENCE APPROACH TO SHAPE FROM DEFOCUS
Paolo Favaro
p.favaro@hw.ac.uk
This is a Matlab
www.eeworm.com/read/462144/7208655
readme
IMPLEMENTATION OF THE LEAST_SQUARES APPROACH TO SHAPE FROM DEFOCUS
Paolo Favaro
p.favaro@hw.ac.uk
This is a Matlab
www.eeworm.com/read/461294/7230004
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