代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/192305/8388443
m lijian.m
n=1:1024;
x=cos(0.1*2*pi*n);
%tfrsp(x');
%tfrwv(x');
%tfrpwv(x');
tfrcw(x')
%tfrspwv(x');
www.eeworm.com/read/391573/8396443
as trig_functions_degrees.as
/*
Trigonometric Functions in Degrees
Oct. 29, 2002
(c) 2002 Robert Penner
These are wrappers for the built-in Math functions
(sin, cos, tan, and their inverses) that allow you
t
www.eeworm.com/read/391573/8396582
as trig_functions_degrees.as
/*
Trigonometric Functions in Degrees
Oct. 29, 2002
(c) 2002 Robert Penner
These are wrappers for the built-in Math functions
(sin, cos, tan, and their inverses) that allow you
t
www.eeworm.com/read/192224/8397265
txt dispersion.txt
%做关于Sapphire(n_o)、Sapphire(n_e)、Fuse silica、BK7 (K9)、 SF10晶体二阶色散曲线图
% Sapphire(n_o)
B1=1.5039759;
B2=0.55069141;
B3=6.5927379;
C1=0.0054804113;
C2=0.014799428;
C3=402.89514
www.eeworm.com/read/192089/8407510
cpp main3_1b.cpp
// Section 7.3.1
// $ CC ptrswap.cpp main3_1b.cpp
/*
Before ptrswap(): pi: 10 pj: 20
After ptrswap(): pi: 20 pj: 10
*/
#include
using std::cout;
using std::en
www.eeworm.com/read/192089/8408062
c ch04.04.c
// #include
// #include
#include
#include
#include
/*****
pi: 4 *pi: 4
st1: 12 st2: 12 ps: 4 *ps: 12
short : 2
short* : 4
www.eeworm.com/read/391341/8408066
m gamicheval.m
function [sol,val] = gaMichEval(sol,options)
val = 21.5 + sol(1) * sin(4*pi*sol(1)) + sol(2)*sin(20*pi*sol(2));
%G=zeros(0);
%val = sqrt(sol(1)) * sin(2*sol(1)) + sqrt(sol(1))*cos(5*sol(1))+5;
www.eeworm.com/read/391300/8410609
txt mch03-02.txt
正弦曲线的标注
t=0:pi/20:2*pi;
plot(t,sin(t))
xlabel('t = 0 到 2\pi','FontSize',16)
ylabel('sin(t)','FontSize',16)
title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16)
text(3*pi/4,sin(3*pi/4),..
www.eeworm.com/read/391300/8410619
txt mch03-03.txt
图形的交互式文本标注
t=0:pi/20:2*pi;
plot(t,sin(t))
xlabel('t = 0 到 2\pi','FontSize',16)
ylabel('sin(t)','FontSize',16)
title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16)
gtext('第一个点');
gtext('第二
www.eeworm.com/read/391300/8410656
txt mch02-04.txt
指定线条属性后的图形
x = -pi:pi/10:pi;
y = tan(sin(x)) - sin(tan(x));
plot(x,y,'--ro','LineWidth',2,...
'MarkerEdgeColor','k',...
'MarkerFaceColor','g',...
'MarkerSize',10)