代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/316346/13524280
txt 1.txt
//rot is 0;
origin is(380,240);
for T from 0 to 300 step 1 draw(t,0);
for t from 0 to 300 step 1 draw(0,-t);
for t from 0 to 300 step 1 draw(t,-t);
--scale is (2,0.1);
//for t from 0 to 300 step
www.eeworm.com/read/316047/13531385
m c8mga1.m
function [sol,y]=c8mga1(sol,options)
x=sol(1); y=x.*sin(10*pi*x)+2;
www.eeworm.com/read/314631/13563094
m exm030201.m
a1=1:6
a2=0:pi/4:pi
a3=1:-0.1:0
b1=linspace(0,pi,4)
b2=logspace(0,3,4)
c1=[2 pi/2 sqrt(3) 3+5i]
rand('state',0)
c2=rand(1,5)
www.eeworm.com/read/314616/13563619
txt test.txt
FOR T FROM 0 TO 2*PI STEP PI/50 DRAW (cos(T),sin(T));
www.eeworm.com/read/314613/13563718
txt text.txt
FOR T FROM 0 TO 2*PI STEP PI/50 DRAW ( cos(T), sin(T)) ;
www.eeworm.com/read/309538/13669399
m quad1.m
function S=quad1(x)
s=0;
k=0;
a=rand(100);
for i=1:100
for j=1:100
if j/100
www.eeworm.com/read/308995/13684500
cpp useptrswap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/308787/13692009
m gaussn.m
function g = gaussn(f0,n)
% function gn = gaussn(f0,n) : generates the order n derivative of the
% gaussian window, centered at frequency f0
% The wavelet gn is real, but it is its analytic form
www.eeworm.com/read/308602/13698885
m e0206.m
b=[1+2*i,2+3*i;2-i,3-2*i]
real(b)
imag(b)
abs(b)
angle(b)
angle(b)*180/pi
conj(b)
www.eeworm.com/read/308422/13701684
m myifft.m
function M=myifft(D)
n=length(D);
M=zeros(n);
for x=1:n
for y=1:n
for u=1:n
for v=1:n
a=(1/n^2)*(D(u,v)*exp(j*2*pi*((u-1)*(x-1)/n+(v-1)*(y-1)/n)));