代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/489042/6481907
m bigtwolay_nn1.m
%两层大型神经网络
clc;clear;n=60;
x=ones(n,n)/4;
A=imread('C:\Program Files\MATLAB71\work\OO1.bmp');
W1=double(A);W2=double(A);
for i=1:2000
for k=1:n
u=x(k,:)*W1(:,:);
y(k,:)=mod(
www.eeworm.com/read/488461/6487294
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/488464/6487365
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/488267/6491116
txt readme.txt
Kalman filter toolbox written by Kevin Murphy, 1998.
See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details.
Installation
------------
1. Install KPMtools from http://www.ai.mit.edu/~mu
www.eeworm.com/read/487877/6501372
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/487877/6501379
txt readme.txt
**************************************************************
Matlab MEX interface to sba's simple drivers
Manolis Lourakis, November 2007
**********************
www.eeworm.com/read/486201/6538110
txt readme_ncutimage.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Normalized Cut Image Segmentation Code %
% %
% Timothee Cour (UPENN), Stella Yu
www.eeworm.com/read/486205/6538139
m 7-17.m
%例程7-17 双极性归零码
%双极性归零码的MATLAB程序实现如下:
function y=drz(x) %x为二进制序列,y为编码输出
grid=100;
t=0:1/grid:length(x); %时间序列
for i=1:length(x)
www.eeworm.com/read/485928/6550576
m gausselimination.m
clear; augm=input('Please input the augmented matrix:'); % 输入增广矩阵,记为augm
[m,l]=size(augm); % 增广矩阵的行数为m,列数为n
for i=1:m-1
if augm(i,i)==0 % 如果第i行i列位置的元素为零,则要将此行与下面
k=i+1;