代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/459103/7282712

m ex5_19.m

t=0:pi/20:2*pi; [x,y,z]= cylinder(2+sin(t),30); subplot(2,2,1); surf(x,y,z); subplot(2,2,2); [x,y,z]=sphere; surf(x,y,z); subplot(2,1,2); [x,y,z]=peaks(30); surf(x,y,z);
www.eeworm.com/read/458870/7286491

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/458682/7291466

sh ex47.sh

#!/bin/bash # printf demo PI=3.14159265358979 DecimalConstant=31373 Message1="Greetings," Message2="Earthling." echo printf "Pi to 2 decimal places = %1.2f" $PI echo printf "Pi to 9 decimal places
www.eeworm.com/read/458661/7291896

m omniband.m

% omniband.m - bandwidth of omnidirectional mirrors and Brewster polarizers % % Usage: [F1,F2] = omniband(na,nH,nL,LH,LL,th,pol,N) % [F1,F2] = omniband(na,nH,nL,LH,LL,th,pol) (equivalent
www.eeworm.com/read/457950/7315115

m mmse.m

function [ ]=MMSE(M,d,angle1,angle2,angle3) sig=0.001; theta=-pi/2:.01:pi/2; ang=theta*180/pi; th0=angle1*pi/180; th1=angle2*pi/180; th2=angle3*pi/180; n=1:M; disp(('The Distorted angle for
www.eeworm.com/read/457711/7318915

m ag45.m

%《线性代数实验践及MATLAB入门》第四章第五节演示程序ag45 % 字符串函数库 % 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月 clear, echo on s='abyzABYZ0189',pause size(s),pause abs(s),pause setstr(abs(s)),pause dec2hex(abs(s)),pause s1=['
www.eeworm.com/read/457321/7327396

java global.java

/* Global.java Global constants (P)2002 Dana Cristofor */ /* GAClust - Clustering categorical databases using genetic algorithms Copyright (C) 2002 Dana Cristofor This pr
www.eeworm.com/read/456783/7339722

m hotqch.m

clear all close all a=0;b=1;m=10;T=0.5;N=1000;af=1; f=inline('sin(pi*x)','x'); h=(b-a)/m; k=T/N; lmd=af^2*k/h^2; %注意lmd一定要小于0.5,只有这样差分法才稳定 x=linspace(a,b,m+1); u(1,1:N+1)=0; u(m+1,1:N+1)=0;
www.eeworm.com/read/456783/7339734

m cn.m

close all; clear all; a=0;b=1;m=10;T=0.5;N=50;af=1; f=inline('sin(pi*x)','x'); h=(b-a)/m; k=T/N; lmd=af^2*k/h^2; x=linspace(a,b,m+1); x=x(2:m+1); u(m)=0; for i=1:m-1 u(i)=f(i*h); end
www.eeworm.com/read/456354/7351430

m ip_07_07.m

% MATLAB script for Illustrative Problem 7, Chapter 7. echo on Tb=1; f1=1000/Tb; f2=f1+1/Tb; phi=pi/4; N=5000; % number of samples t=0:Tb/(N-1):Tb; u1=cos(2*pi*f1*t); u2=cos(2*pi*f2*t); % assum