代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/150256/12301795

asv liti6.asv

Randnum=unifrnd(0,2*pi,1,100); xRandnum=cos(Randnum); yRandnum=sin(Randnum); plot(xRandnum,yRandnum)
www.eeworm.com/read/150013/12325593

m examp5_13.m

syms t k; syms a positive f1=t; f2=a-t; Fs=int(f1*sin(k*pi*t/a),t,0,a/2)+int(f2*sin(k*pi*t/a),t,a/2,a); simple(Fs)
www.eeworm.com/read/337249/12382340

m td_nmvf.m

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Td_nmvf.m - Plots total developed torque(TTd) vs speed(nm) % for variable frequency induction motor operation.
www.eeworm.com/read/337166/12386960

m f2.m

function y=f2(t) y=0.2*t-exp(-0.5*t).*sin(t+pi/6);
www.eeworm.com/read/336933/12406521

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/148705/12439345

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/148705/12439445

cpp p1-4.cpp

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

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/234679/14100779

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/234209/14119421

m deg2rad.m

function uscita = deg2rad(ingresso) uscita = 2*pi*ingresso/360;