代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
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
www.eeworm.com/read/460538/7247705
readme
-----------------------------------------
--- MATLAB/OCTAVE interface of LIBSVM ---
-----------------------------------------
Table of Contents
=================
- Introduction
- Installation
- Usag
www.eeworm.com/read/460519/7248354
readme
v3d - Readme
===================
A set of MatLab Scripts to vizualize 3D Data.
Copyright (C) 2001-2002 Robert Barsch
This program is free software; you
www.eeworm.com/read/460435/7250423
m reorderdset.m
function a = reorderdset(a,L)
% This is just needed to execute the below command outside the @dataset
% directory, as it fails there in some Matlab versions
a(L,:) = a;
return
www.eeworm.com/read/459907/7263201
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);