代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/480441/6664356
m p23conver.m
function yout=p23conver(u)
theta=2*pi/3;
c=sqrt(2/3)*[ cos(u(3)) cos(u(3)-theta) cos(u(3)+theta)
-sin(u(3)) -sin(u(3)-theta) -sin(u(3)+theta) ]';
yout=c*[u(1) u(2)]';
www.eeworm.com/read/480473/6664655
m liti7.m
x=linspace(0,2*pi,100);
y=sin(x); z=cos(x);
a=sin(x).*cos(x);b=sin(x)./(cos(x)+eps)
subplot(2,2,1);plot(x,y),title('sin(x)')
subplot(2,2,2);plot(x,z),title('cos(x)')
subplot(2,2,3);plot(x
www.eeworm.com/read/480473/6664678
m liti6.m
x=linspace(0,2*pi,100);
y=sin(x);z=cos(x);
plot(x,y);
title('sin(x)');
pause
figure(2);
plot(x,z);
title('cos(x)');
pause
www.eeworm.com/read/480473/6664680
m liti2.m
x=linspace(0,2*pi,30);
y=sin(x);
plot(x,y)
xlabel('自变量X')
ylabel('函数Y')
title('示意图')
grid on
www.eeworm.com/read/480149/6677660
m axis542.m
function axis542
x = 0:.025:pi/2;
plot(x,tan(x),'-ro')
axis([0 pi/2 0 5])
www.eeworm.com/read/480149/6677665
m comet531.m
function comet531
figure(1)
t = 0:.01:2*pi;
x = cos(2*t).*(cos(t).^2);
y = sin(2*t).*(sin(t).^2);
comet(x,y);
www.eeworm.com/read/480149/6677667
m errorbar531.m
function errorbar531
figure(1)
x=[0:0.2:4*pi];
y=sin(x);
e=[0:1/(length(x)-1):1];
errorbar(x,y,e)
www.eeworm.com/read/480149/6677696
m plotyy533.m
function plotyy533
x=0:0.01*pi:2*pi;
y=sin(x);
z=exp(x);
plotyy(x,y,x,z,'plot','semilogy')
www.eeworm.com/read/479816/6679494
rpt pp.fit.rpt
Fitter report for pp
Sun Aug 05 22:01:04 2007
Quartus II Version 7.1 Build 156 04/30/2007 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
www.eeworm.com/read/479911/6683316
h formula-with-inverse.h
#include "formula.h"
double b_to_p(double b, double rtt, double tzero, int psize, int bval)
{
double p, pi, bres;
int ctr=0;
p=0.5;pi=0.25;
while(1) {
bres=p_to_b(p,rtt,tzero,psize, bval);
/