代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/278209/10559668
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/423354/10569121
f90 code81.f90
!!!!!!!!!!!!!!!!!!!!!!!!!!! Program 8.1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
www.eeworm.com/read/423354/10569137
f90 code41.f90
! Updated 10/24/2001.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!! Program 4.1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
www.eeworm.com/read/351960/10590149
m 1holo_hex.m
[x,y]=meshgrid(0:0.05:15);
d=4;
a=size(x);b=size(y); a=a(1,2);b=b(1,2);a;b;
I=zeros(a,b);
for m=1: a
for n=1: b
I(m,n)=1+4*(cos(pi*sqrt(3)*x(m,n)/d)+cos(pi*3*y(m,n)/d))*cos(pi*sqrt(3)*x(m,n)/d);
www.eeworm.com/read/351894/10599585
asv dtmf.asv
f = [697 770 852 941 1209 1336 1477 1633];
coef = [27980 26956 25701 24219 19073 16325 13085 9315];
%coef = [0.8539 0.8226 0.7843 0.7391 0.5821 0.4982 0.3993 0.2843];
fs = 8000
www.eeworm.com/read/277434/10639523
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/277186/10655431
readme
README (05/13/00)
------
This is the TriMedia optimized DCT algorithm.
API
---
The API takes an array of 64 shorts as input and renders the 64
shorts as output.
The input and output are in normal
www.eeworm.com/read/351309/10659242
m makeerbfilters.m
function fcoefs=MakeERBFilters(fs,numChannels,lowFreq)
% function [fcoefs]=MakeERBFilters(fs,numChannels,lowFreq)
% This function computes the filter coefficients for a bank of
% Gammatone filters.
www.eeworm.com/read/159329/10669237
readme
README (05/13/00)
------
This is the TriMedia optimized DCT algorithm.
API
---
The API takes an array of 64 shorts as input and renders the 64
shorts as output.
The input and output are in normal
www.eeworm.com/read/276983/10690624
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