代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/417309/10996149
m ans2_7.m
disp('sin(60)=');
disp(sind(60));
disp('exp(3)=');
disp(exp(3));
disp('cos(3*pi/4)=');
disp(cos(3*pi/4));
www.eeworm.com/read/271226/11002528
txt test2.txt
--------------- 图形1:
origin is (20, 200); -- 设置原点的偏移量
rot is 0; -- 不旋转
scale is (40, 40); -- 设置比例
for T from 0 to 2*pi+pi/50 step pi/50 draw (t, -sin(t));-- 画T的轨迹
orig
www.eeworm.com/read/271226/11002544
txt testdebug.txt
FOR T FROM 0 TO 2*PI STEP PI/50 DRAW (cos(T),sin(T));
www.eeworm.com/read/271226/11002566
txt test.txt
FOR t FROM 0 TO 2*PI STEP PI/50 DRAW (cos(T),sin(T));
www.eeworm.com/read/470699/6906073
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/381420/6957411
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/263537/6996090
h ifftc.h
#include
#include
#define N 8 //fft 点数
#define pi 3.141592653589793
www.eeworm.com/read/467806/7001704
txt 例1.10.txt
例1.10 赋值语句。
>> a=3+5+6*4-9
a =
23
>> x=sin(pi/6),y=x^2;z=5*y % 同时执行多个赋值语句。
x =
0.5000
z =
1.2500
www.eeworm.com/read/467077/7015370
m makesig.m
function [x,N] = makesig(SigName,N)
% [x,N] = makesig(SigName,N) Creates artificial test signal identical to the
% standard test signals proposed and used by D. Donoho and I. Johnstone
% in Wa
www.eeworm.com/read/465867/7047734
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;