代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/405427/11462745
m exa020502.m
%-------------------------------------------------------------------------
% exa020502.m, for example 2.5.2 and fig 2.5.6,
%------------------------------------------------------------------------
www.eeworm.com/read/405427/11462772
m exa030202.m
%----------------------------------------------------------------------------
% exa030202, for example 3.2.2 and fig 3.2.4
% to explain how to unwrap the phase
%------------------------------------
www.eeworm.com/read/405283/11467064
c 矩阵转换.c
void trans(int *p,int n)
{
int i,j,temp;
int *pi,*pj;
for(i=0;i
www.eeworm.com/read/405217/11468649
m cfreqz.m
% CFREQZ Function to plot pole-zero plot and transfer function of complex poles
% and zeros
%
% CFREQZ (zeros, poles, k) plots the pole zero diagram and tranfer function specified
%
www.eeworm.com/read/405217/11468657
m mustripw.m
% MUSTRIPW Calculate the width of a microstrip line from the effective width required
%
% [W] = MUSTRIPW (Weff, T, H)
% Weff is the effective width
% T is the thickness
% H i
www.eeworm.com/read/405053/11472690
c lsp.c
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE
www.eeworm.com/read/404031/11492352
m straightline.m
%----求直线方程,知道两点得出直线的k和b值
function theta = straightLine(x1,y1,x2,y2)
a=x2-x1+j*(y2-y1);
angleA=angle(a);
if angleA >=0
theta = angleA;
else
theta = 2*pi+angleA;
end
www.eeworm.com/read/403832/11508937
m straightline.m
%----求直线方程,知道两点得出直线的k和b值
function theta = straightLine(x1,y1,x2,y2)
a=x2-x1+j*(y2-y1);
angleA=angle(a);
if angleA >=0
theta = angleA;
else
theta = 2*pi+angleA;
end
www.eeworm.com/read/403569/11514686
m chap5_10.m
%Iterative learning control for mobile robot path-tracking
clear all;
close all;
ts=0.001; %Sample time
for k=1:1:2001
xd(k)=cos((k-1)*pi*ts);
yd(k)=sin((k-1)*pi*ts
www.eeworm.com/read/403568/11514720
m chap4_9ctrl.m
function [sys,x0,str,ts] = MIMO_Tong_s(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 {