代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/463748/7176087
m ip_07_07.m
% MATLAB script for Illustrative Problem 7.7.
echo on
Tb=1;
f1=1000/Tb;
f2=f1+1/Tb;
phi=pi/4;
N=5000; % number of samples
t=0:Tb/(N-1):Tb;
u1=cos(2*pi*f1*t);
u2=cos(2*pi*f2*t);
% Assu
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/463564/7178277
m samp3_1ex.m
%Samp3_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=floor(
www.eeworm.com/read/462459/7201230
m bezier_circle.m
%************************************************************************
% Bezier_circle *
%
www.eeworm.com/read/462318/7202842
m ip_07_07.m
% MATLAB script for Illustrative Problem 7.7.
echo on
Tb=1;
f1=1000/Tb;
f2=f1+1/Tb;
phi=pi/4;
N=5000; % number of samples
t=0:Tb/(N-1):Tb;
u1=cos(2*pi*f1*t);
u2=cos(2*pi*f2*t);
% Assu
www.eeworm.com/read/462209/7206165
m ml.m
function [ output ] = ML( input )
%ML Summary of this function goes here
% Detailed explanation goes here
r=(sqrt(2))*[input(1,1) input(2,1) input(3,1) input(4,1) input(5,1) input(6,1) input(7,1) in
www.eeworm.com/read/462042/7211748
txt 代码21-1.txt
p=[0 0;10 0];
n=2;
A=[cos(pi/3) -sin(pi/3);sin(pi/3) cos(pi/3)];
for k=1:5
d=diff(p)/3;m=4*n-3;
q=p(1:n-1,:);p(5:4:m,:)=p(2:n,:);
p(2:4:m,:)=q+d;
p
www.eeworm.com/read/462042/7211755
txt 代码21-2.txt
p=[0 0;10 10];
n=2;
line(p(:,1),p(:,2),'Color','k'); % 画线
A=[cos(pi/6) -sin(pi/6);sin(pi/6) cos(pi/6)];
for k=1:4
i=1;
for j=1:2:n
p
www.eeworm.com/read/461831/7218835
c wrong.c
//Get 10 integers
pi = malloc( 10 * sizeof( int ) );
……
//free only the last 5 integers, keep the first 5.
free( pi + 5 );
www.eeworm.com/read/461473/7226838
asv firfilterdesign.asv
wp=0.2;ws=0.4;Rp=1;As=20; % 定义滤波器参数(可修改)
[n,wc]=buttord(wp,ws,Rp,As); % 计算滤波器阶次和3dB截止频率
[b,a]=butter(n,wc); % 设计巴特沃斯滤波器
w=[0:pi/200:pi];