代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/418625/10937642
txt readme.txt
========================================================================
CONSOLE APPLICATION : PI
========================================================================
AppWizard has c
www.eeworm.com/read/272824/10942943
cpp p1-14.cpp
#include
const double PI=3.1416; //声明常量(const变量)PI为3.1416
main()
{
//声明3个变量
double r=3,l,s;
//计算圆的周长
l=2*PI*r;
cout
www.eeworm.com/read/272824/10942994
cpp p1-4.cpp
##include //包含iostream.h头文件
void main()
{
//输出字符常量、变量和字符串
char c1='A';
cout
www.eeworm.com/read/272816/10943060
txt 快速傅立叶变换和逆变换c语言算法.txt
完整的快速傅立叶变换和逆变换(FFT IFFT)C语言算法
函数语句:
void kbfft(pr,<mark>pi</mark>,n,k,fr,fi,l,il)
pr-----双精度实型一维数组,长度为n。当n=0时,存放n个采样输入的实部,返回时存放离散傅立叶变换的模;当l=1 时,存放傅立叶变换的n个实部,返回时存放逆傅立叶变换的模。
<mark>pi</mark>-----双精度实型一维数组,长度为n。当n=0时, ...
www.eeworm.com/read/272294/10963167
bas libcyjmoving.bas
Attribute VB_Name = "LibCyjMoving"
Option Explicit
Sub XYPosition_Cal(SetCal As Single, Rcyj As Single, Pcyj As Single, Ccyj As Single, Acyj As Single, _
Icyj As Single, Hzhjcyj
www.eeworm.com/read/417309/10995648
txt 08-26.txt
>> syms x y
>> f = y/(1 + x^2 + y^2);
>> subplot(1,2,1),ezmeshc(f,[-5,5,-2*pi,2*pi],30),title('mesh');
>> subplot(1,2,2),ezsurfc(f,[-5,5,-2*pi,2*pi],30),title('surf');
www.eeworm.com/read/417309/10995738
txt 08-45.txt
>> F =pi^(1/2)*exp(-1/4*w^2);
>> ifourier(F)
>> G =2/(1+t^2);
>> ifourier(G)
>> simplify(G)
>> clear
>> syms x real
>> g = exp(-abs(x));
>> ifourier(g)
>> clear
>> syms w
www.eeworm.com/read/417180/11001287
c 1cpdv.c
#include "math.h"
void cpdv(pr,pi,m,qr,qi,n,sr,si,k,rr,ri,l)
int m,n,k,l;
double pr[],pi[],qr[],qi[],sr[],si[],rr[],ri[];
{ int i,j,mm,ll;
double a,b,c,d,u,v;
void cmul(doubl
www.eeworm.com/read/271226/11002524
txt test4.txt
origin is (350, 220); // 原点位置
rot is 0; // 旋转角度为零
scale is (100, 100); // 横、纵坐标比例因子
for t from 0 to 2*pi step pi/100 draw(cos(t), sin(t)); // 画园
scale is (150, 150);
www.eeworm.com/read/417000/11007577
m exp2_4_.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
hold on %允许在同一坐标系下绘制不同的图形
plot(t,sin(t),'r:*')
plot(t,cos(t))
plot(t,-cos(t),'k')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
hold off %覆盖旧图