代码搜索:Raspberry Pi

找到约 10,000 项符合「Raspberry Pi」的源代码

代码结果 10,000
www.eeworm.com/read/159926/5577855

php jpgraph_pie3d.php

www.eeworm.com/read/156960/5608274

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/156960/5608309

cpp p1-4.cpp

##include //包含iostream.h头文件 void main() { //输出字符常量、变量和字符串 char c1='A'; cout
www.eeworm.com/read/154620/5635617

c ex17.c

#include /* special function register declarations */ /* for the intended 8051 derivative */ #include
www.eeworm.com/read/153664/5645567

m iteratedsine.m

function w = IteratedSine(t) % IteratedSine -- window for iterated sine cut-off function % Usage % w = IteratedSine(t) % Inputs % t abscissa values for window evaluation % Outputs
www.eeworm.com/read/153528/5649765

cs class1.cs

using System; namespace DerefMember { public struct Insect { public int id; private decimal price; public Insect(int id, decimal price) {
www.eeworm.com/read/475897/6768581

m chap3_11f.m

function [y]=func(x1,x2,x3) for l1=1:1:3 gs1=-[(x1+pi/6-(l1-1)*pi/6)/(pi/12)]^2; u1(l1)=exp(gs1); end for l2=1:1:3 gs2=-[(x2+pi/6-(l2-1)*pi/6)/(pi/12)]^2; u2(l2)=exp(gs2); end
www.eeworm.com/read/476058/6773075

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 %覆盖旧图
www.eeworm.com/read/476058/6773083

m exp2_4.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; figure(1) %选择图像 plot(t,sin(t),'r:*') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 grid off %删除栅格 figure(2) plot(t,cos(t)) grid on grid off
www.eeworm.com/read/475765/6777735

m ex8_12.m

% EX8_12.M Plot the Fourier transform (w>0) of a pulse for various % widths. Pulse width is tau = 16 and 4 seconds. f=[0:.005:.75]; % Frequency f=f + eps; % Avoid a divide b