代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/493017/6403961
m m_exam7.m
% example 7
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
plot(x,y,x,z);
www.eeworm.com/read/492717/6407922
m example1_9.m
figure;
t=0:pi/20:2*pi;
plot(t,sin(t));
f=axes;
copyobj(h,f);
www.eeworm.com/read/492326/6421558
m ex5_1.m
x=0:pi/100:2*pi;
y=2*exp(-0.5*x).*cos(4*pi*x);
plot(x,y)
www.eeworm.com/read/491236/6437977
m sinc1.m
clear all
xx = -2*pi:.1:2*pi;
[X,Y] = meshgrid(xx);
z = sqrt(X^2+Y^2);
x = sinc(z);
www.eeworm.com/read/490722/6451953
m fun_12_10.m
function ydot=fun_12_10(t,x)
u=1-(t.^2)/(pi^2);
ydot=[0 1;-1,0]*x+[0 1]'*u;
www.eeworm.com/read/489524/6472674
m sinc1.m
clear all
xx = -2*pi:.1:2*pi;
[X,Y] = meshgrid(xx);
z = sqrt(X^2+Y^2);
x = sinc(z);
www.eeworm.com/read/488496/6488235
cpp useptrswap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/485597/6554376
m princarg.m
function phase=princarg(phase_in)
phase=mod(phase_in+pi,-2*pi)+pi;