代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/389747/8505159
m mfm.m
clear all;
close all;
kf=5;
fc=2.5;
T=5;dt=0.001;
t=0:dt:T;
%信源
fm=1;fs=32;fsc=40;
%mt=cos(2*pi*fm*t)+1.5*sin(2*pi*0.3*fm*t);%信源信号
mt=cos(2*pi*fm*t);%信源信号
%fm调制
A=sqrt(2);
%mti=1/2/pi/fm*s
www.eeworm.com/read/389692/8507802
m pimf.m
function y = pimf(x, params)
%PIMF Pi-shaped curve membership function.
% PIMF(X, PARAMS) returns a matrix that is the Pi-shaped
% membership function evaluated at X. PARAMS = [A B C D] is a 4-
www.eeworm.com/read/389692/8508094
fis sltbu.fis
% $Revision: 1.1 $
[System]
Name = 'sltbu'
Type = 'sugeno'
NumInputs = 3
NumOutputs = 1
NumRules = 2
AndMethod = 'prod'
OrMethod = 'max'
ImpMethod = 'prod'
AggMethod = 'max'
DefuzzMethod = 'wtaver'
[
www.eeworm.com/read/389659/8509192
m chap5_3mf.m
clear all;
close all;
L1=-pi/6;
L2=pi/6;
L=L2-L1;
T=L*1/1000;
x=L1:T:L2;
figure(1);
for i=1:1:5
gs=-[(x+pi/6-(i-1)*pi/12)/(pi/24)].^2;
u=exp(gs);
hold on;
plot(x,u);
end
xla
www.eeworm.com/read/389659/8509218
m chap5_3s.m
function [sys,x0,str,ts] = spacemodel(t,x,u,flag)
switch flag,
case 0,
[sys,x0,str,ts]=mdlInitializeSizes;
case 1,
sys=mdlDerivatives(t,x,u);
case 3,
sys=mdlOutputs(t,x,u);
case
www.eeworm.com/read/389451/8519345
m lijian.m
n=1:1024;
x=cos(0.1*2*pi*n);
%tfrsp(x');
%tfrwv(x');
%tfrpwv(x');
tfrcw(x')
%tfrspwv(x');
www.eeworm.com/read/389442/8519750
m bp_trainbr2.m
clear
P=[-1:0.05:1]
%randn('seed',78341223);
T=sin(2*pi*P)+0.1*randn(size(P))
figure(1)
TI=sin(2*pi*P);
plot(P,TI,'R');
hold on
pause
plot(P,T,'B');
pause
clc
net=newff(minmax(P),[1,20,1],
www.eeworm.com/read/389442/8519797
m sin_test2.m
clear all
pi=3.14;
p = 0:0.2:pi*2;
t = sin(p)+0.1*randn(size(p));
net=newff(minmax(p),[20,1],{'tansig','purelin'},'trainbr');
net.trainParam.show = 10;
net.trainParam.epochs = 500;
net = init(
www.eeworm.com/read/289776/8527697
m angledisplay.m
% This is a subfunction of rrrproject3.m
% Created by Gan Tao taogan@eng.buffalo.edu
% Graduate Student of SUNY Buffalo
% Date: Jan.2004
% angledisplay.m is to display the absolutes angle of eac
www.eeworm.com/read/289775/8527877
m ik2q.m
function d = ik2q (M,o)
%IK2Q(M, OPTION) Auxiliary: Inverse Kinematics
%July ~ December 2005, by Reinaldo M. do Nascimento
for i=1:size(M,1)
d(i)=double(M(i,2));
if (nargin==2) & (M