代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/173816/9634316
m 1-3.m
y1=sqrt(10)*sin(0.6*pi)/(2+sqrt(7))
% 用“↑”调回上面输入的指令
y2=sqrt(10)*cos(0.6*pi)/(2+sqrt(7))
www.eeworm.com/read/173799/9635307
m chirplets.m
function x = chirplets(N, P)
% chirplets -- make a signal that is a sum of chirplets
%
% Usage
% x = chirplets(N, P)
%
% Inputs
% N length of signal
% P matrix of parameters [amp tim
www.eeworm.com/read/173140/9671000
m ip_07_07.m
% MATLAB script for Illustrative Problem 7, Chapter 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);
% assum
www.eeworm.com/read/368624/9683001
cpp 2011.cpp
#include
#include
using namespace std;
int main()
{
int m;
int a[1000];
while(cin>>m)
{
int i,j;
for(i=0;i>a[i];
}
for(i=0;i
www.eeworm.com/read/368108/9711601
m exm014_1.m
% exm014_1.m
y1=2*sin(0.3*pi)/(1+sqrt(5))
disp('按任意键继续!')
pause
y2=2*cos(0.3*pi)/(1+sqrt(5))
www.eeworm.com/read/368108/9711727
m exm051_1.m
%exm051_1.m 符号常数形成中的差异
a1=[1/3,pi/7,sqrt(5),pi+sqrt(5)] %a1是数值常数
a2=sym([1/3,pi/7,sqrt(5),pi+sqrt(5)]) %最接近的有理表示
a3=sym('[1/3,pi/7,sqrt(5),pi+sqrt(5)]') %绝对准确的符号数值表示
a23=a2
www.eeworm.com/read/172257/9715715
m gau1.m
%函数gau1.m:ML量化器设计中分子的计算式%
function y=gau1(x)
y=x./sqrt(2*pi).*exp(-x.^2/2);
www.eeworm.com/read/172257/9715722
m gau.m
%函数gau.m:ML量化器设计中分母的计算式%
function y=gau(x)
y=1/sqrt(2*pi)*exp(-x.^2/2);
www.eeworm.com/read/367926/9722592
m ex2_1.m
x=1+2i;
y=3-sqrt(17);
z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))
www.eeworm.com/read/367926/9722628
m ex5_8.m
t=0:0.01:2*pi;
x=exp(i*t);
y=[x;2*x;3*x]';
plot(y)
grid on; %加网格线
box on; %加坐标边框
axis equal %坐标轴采用等刻度