代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/284653/8911664
cpp test.cpp
// Test.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "math.h"
#include "stdlib.h"
#include "time.h"
#include "memory.h"
#define PI (3.141592653
www.eeworm.com/read/284604/8914160
m exa060702_2.m
%--------------------------------------------------------------------------
% exa060702_2 , for example 6.6.2 and 6.7.2;
% to test buttord.m and butter.m;
% to design a Butterworth Bandpass digital
www.eeworm.com/read/284604/8914176
m exa020502.m
%-------------------------------------------------------------------------
% exa020502.m, for example 2.5.2 and fig 2.5.6,
%------------------------------------------------------------------------
www.eeworm.com/read/284604/8914260
m exa030202.m
%----------------------------------------------------------------------------
% exa030202, for example 3.2.2 and fig 3.2.4
% to explain how to unwrap the phase
%------------------------------------
www.eeworm.com/read/427885/8915004
m collins_diffraction.m
tic
clear;
lambda=0.0004;%波长单位mm
theater0=0.00035;%高斯光束发散角单位rad
w0=lambda/pi/theater0;
A0=250;
A=-50;
B=-9802;
D=-0.02;
L=704;%ABCD光学系统光轴上光程
nx=50;%观察平面上分100个点
ny=50;
nx1=50;%将束腰分成100个点
n
www.eeworm.com/read/186670/8919335
txt mch03-01.txt
坐标轴的标注
t=0:pi/20:2*pi;
plot(t,sin(t))
xlabel('t = 0 到 2\pi','FontSize',16)
ylabel('sin(t)','FontSize',16)
title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16)
www.eeworm.com/read/186670/8919389
txt mch02-13.txt
双Y轴图形的绘制
t = 0:pi/20:2*pi;
y = exp(sin(t));
plotyy(t,y,t,y,'plot','stem')
www.eeworm.com/read/186670/8919393
txt mch02-24.txt
紧缩后的坐标轴具有相同数据单位的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis equal tight
www.eeworm.com/read/186670/8919401
txt mch02-23.txt
坐标轴具有相同数据单位的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis equal
www.eeworm.com/read/186670/8919452
txt mch02-22.txt
x轴和y轴长度相同情况下绘制的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis square