代码搜索结果
找到约 10,000 项符合
Raspberry Pi 的代码
z2.asv
lear;
A=imread('Water lilies','JPEG');
subplot(1,2,1);
subimage(A);
title('变化前的图');
A=im2double(A);
A=A/256;
R=A(:,:,1);
G=A(:,:,2);
B=A(:,:,3);
I=(R+G+B)/3;
S=1-min(R,min(G,B))./I;
H=zero
z2.m
clear;
A=imread('Water lilies','JPEG');
subplot(1,2,1);
subimage(A);
title('变化前的图');
A=im2double(A);%将A转换成double型
A=A/256;
R=A(:,:,1);
G=A(:,:,2);
B=A(:,:,3);
I=(R+G+B)/3;
S=1-min(R,min(G,B
example1_8.m
t=0:pi/20:2*pi;
plot(t,sin(t));
xlabel('t=0 to 2pi');
ylabel('sin(t)');
title('0到2pi的正弦曲线');
text(pi/4,sin(pi/4),'\leftarrowsin(t)=0.707');
johnwallis.java
class JohnWallis extends Estimation
{
//----------------FIELDS-------------
private double pi;
//--------------CONSTRUCTOR-------------
public JohnWallis(int newTermNo)
{
super(newTe
transformtoglobal.m
function p = TransformToGlobal(p, b)
% function p = TransformToGlobal(p, b)
%
% Transform a list of poses [x;y;phi] so that they are global wrt a base pose
%
% Tim Bailey 1999
% rotate
rot =
2-7.m
t = 0:pi/20:2*pi;
plot(t,sin(t),'-.r*')
hold on
%以后图形绘制在当前坐标轴图形上
plot(t,sin(t-pi/2),'--mo','Linewidth',2)
plot(t,sin(t-pi),':bs','Linewidth',3,...
'MarkerEdgeColor','k',...
example1_8.m
t=0:pi/20:2*pi;
plot(t,sin(t));
xlabel('t=0 to 2pi');
ylabel('sin(t)');
title('0到2pi的正弦曲线');
text(pi/4,sin(pi/4),'\leftarrowsin(t)=0.707');
obsd-device.c
/*
* The PCI Library -- OpenBSD /dev/pci access
*
* Adapted from fbsd-device.c by Matthieu Herrb , 2006
*
* Can be freely distributed and used under the terms of the GNU G
example1_8.m
t=0:pi/20:2*pi;
plot(t,sin(t));
xlabel('t=0 to 2pi');
ylabel('sin(t)');
title('0到2pi的正弦曲线');
text(pi/4,sin(pi/4),'\leftarrowsin(t)=0.707');
yhzfirsamp.m
function [b,a] = yhzFirSamp(fp,N,FType)
% function yhzFirSamp designs the FIR(Type I Linear Phase Responese) DF
% with Frequency Sampling Method
% fp: cutoff frequency with Fsa nor