代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/376593/9312847
m examp10_20.m
t=0:0.03:2*pi; y=sin(t.^2); plot(t,y)
a=1:32; Z=cwt(y,a,'mexh','plot'); % 绘制绝对值图
surf(t,a,Z); shading flat; axis([0 2*pi,0,32,min(Z(:)) max(Z(:))])
www.eeworm.com/read/376593/9312870
m examp8_5.m
x=[0:3*pi/2/200:3*pi/2]; y=cos(15*x);
I=quadspln(x,y,0,3*pi/2)
x0=[0:3*pi/2/1000:3*pi/2]; y0=cos(15*x0);
y1=interp1(x,y,x0,'spline'); plot(x,y,x0,y1,':')
www.eeworm.com/read/376414/9318186
c fir.c
#include "DSP281x_Device.h" // DSP281x Headerfile Include File
#include "DSP281x_Examples.h" // DSP281x Examples Include File
#include "f2812a.h"
#include"math.h"
#define FIRNUMBER 25
#de
www.eeworm.com/read/376414/9318221
c iir.c
#include "DSP281x_Device.h" // DSP281x Headerfile Include File
#include "DSP281x_Examples.h" // DSP281x Examples Include File
#include "f2812a.h"
#include"math.h"
#define IIRNUMBER 2
#def
www.eeworm.com/read/179957/9326423
cpp p1-98.cpp
#include
//以下是几个简单宏替换预处理指令
#define YES 1
#define PI 3.1415926
#define RAD PI/180
#define MESG "This is a string."
//以下是主程序
main() {
//以下各语句使
www.eeworm.com/read/179957/9326488
cpp p1-12.cpp
#include
const double PI=3.1416; //声明常量(const变量)PI为3.1416
main()
{
//声明3个变量
double r,l,s;
//输入圆的半径
coutr;
//计算圆的周长
www.eeworm.com/read/179957/9326527
cpp p1-100.cpp
#include
#define PI 3.1416
main() {
int i=100;
#if 1
cout
www.eeworm.com/read/376114/9331198
c show_tan.c
#include
#include
void main(void)
{
double pi = 3.14159265;
printf("Tangent of pi is %f\n", tan(pi));
printf("Tangent of pi/4 is %f\n", tan(pi / 4.0));
}
www.eeworm.com/read/376037/9335881
f90 ex0429.f90
program ex0429
implicit none
real pi
parameter(pi=3.14159)
write(*,"(F4.2)") sin(pi/6)
end