代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/383980/8908263
txt 小波脊提取.txt
clc;
clear all;
a(1)=25;
Te=0.001;
t=0:0.001:1;
s=cos(2*pi*(30*(t.^2)+40*t)); %改了一下原信号
%s=hilbert(s);
%hudu=4*pi;
%用morlet小波进行分析;
kk=length(t);
k=0;
aa=0;
bb=0;
w0=2*pi; %cmor2-1小波的中心频率
www.eeworm.com/read/284700/8908662
c ex6-1.c
#include
#define PI 3.141592
#define R 3.0
#define L 2*PI*R
#define S PI*R*R
main() {
printf("L=%f\nS=%f\n",L,S);
while(1);
}
www.eeworm.com/read/284700/8908666
c ex6-2.c
#include
#define PI 3.141592
#define CIRCLE(R,L,S) L=2*PI*R; S=PI*(R)*(R)
main() {
float r,l,s;
printf("Please input r: \n");
scanf("%f", &r);
www.eeworm.com/read/284698/8908766
c ex4-12.c
#include
swap(int * pi, int * pj) {
int temp;
temp = * pi;
* pi = * pj;
* pj = temp;
}
main() {
int a,b;
int *pa, *pb;
printf("Please input
www.eeworm.com/read/427960/8909690
c sample.c
/*
* Example program
*
* Copyright (c) 1988-1997 Shamus Software Ltd.
*/
#include
#include "miracl.h"
int main()
{ /* Brents example program */
flash x,pi;
mira
www.eeworm.com/read/284676/8909799
cpp xt3-2.cpp
#include
#include
using namespace std;
int main ( )
{float h,r,l,s,sq,vq,vz;
const float pi=3.1415926;
coutr>>h;
l=2*pi*r;
s=r*r*pi;
sq
www.eeworm.com/read/427938/8911567
asv 逐点曲线拟和.asv
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%% 曲线拟和求频率特性 %%%%%%%%%%%%%%%%%
close all;
clear all;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%系统离散化及初始值设置%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/427938/8911575
m 逐点曲线拟和.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%% 曲线拟和求频率特性 %%%%%%%%%%%%%%%%%
close all;
clear all;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%系统离散化及初始值设置%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/284604/8914070
m exa060603.m
%----------------------------------------------------------------------------
% exa060603.m, for example 6.6.3;
% To design IIR Butteworth bandstop DF by analog-lowpass,
% -------------------------
www.eeworm.com/read/284604/8914100
m exa011004_sinc.m
%-----------------------------------------------------------------
% exa011004_sinc.m, for example 1.10.4
% to generate the sinc function.
% 产生一 sinc 函数;
%-----------------------