代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/391300/8410680
txt mch02-23.txt
坐标轴具有相同数据单位的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis equal
www.eeworm.com/read/391300/8410726
txt mch02-22.txt
x轴和y轴长度相同情况下绘制的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis square
www.eeworm.com/read/291503/8412285
m fig2_pcsom.m
%Note 1: Let U=u+iv. The equations for (u, v) are Eqs. (135)-(136) in the paper.
% Operator L1 = [dxx+dyy+V+3u^2+v^2+mu 2uv
% 2uv dxx+dyy+V+
www.eeworm.com/read/291235/8432336
cpp xmoment.cpp
#include
#include
#include
#include "nr.h"
using namespace std;
// Driver for routine moment
int main(void)
{
const int NPTS=5000,NBIN=100,NPPNB=NPTS+N
www.eeworm.com/read/291227/8433893
m s103.m
t=0:0.0001:0.2;
x=sawtooth(2*pi*50*t,1);
subplot(326);
plot(t,x);
www.eeworm.com/read/290937/8449918
m ex2_1.m
x=1+2i;
y=3-sqrt(17);
z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))
www.eeworm.com/read/290937/8449963
m ex5_8.m
t=0:0.01:2*pi;
x=exp(i*t);
y=[x;2*x;3*x]';
plot(y)
grid on; %加网格线
box on; %加坐标边框
axis equal %坐标轴采用等刻度
www.eeworm.com/read/290937/8449992
m ex5_17.m
[x,y]=meshgrid(0:0.25:4*pi);
z=sin(x+sin(y))-x/10;
mesh(x,y,z);
axis([0 4*pi 0 4*pi -2.5 1]);
www.eeworm.com/read/290937/8450067
m ex5_15.m
subplot(2,2,1);
ezplot('x^2+y^2-9');axis equal
subplot(2,2,2);
ezplot('x^3+y^3-5*x*y+1/5')
subplot(2,2,3);
ezplot('cos(tan(pi*x))',[ 0,1])
subplot(2,2,4);
ezplot('8*cos(t)','4*sqrt(2)*sin(t)',[
www.eeworm.com/read/290937/8450092
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);