代码搜索:polar si9000
找到约 1,508 项符合「polar si9000」的源代码
代码结果 1,508
www.eeworm.com/read/175889/9527897
vhd r2p_corproc.vhd
--
-- file: r2p_corproc.vhd
--
-- XY to RA coordinate / rectangular to polar coordinates processor
--
-- uses: r2p_pre.vhd, r2p_cordic.vhd, r2p_post.vhd
--
-- rev. 1.1 June 4th, 2001. Richard Herveil
www.eeworm.com/read/460255/7254775
m rp.m
% RP.m
% Rectangular Coordinates to Polar Coordinates transform
function [in_an,in_pn]=RP(ich3,qch3)
n=length(ich3);
for i=1:n
in_an(i)=sqrt(ich3(i)^2+qch3(i)^2);
if(ich3(i)>=0)
www.eeworm.com/read/435306/7794073
m keyframe1.m
%%关键帧提取
clear all;
clc;
tic;%start time
shot=mmread('video\\polar-bear.mpg',1:150);%读取视频
axis off
movie(shot.frames,1,30,[45 50 0 0]);%%%播放视频
axis on
%%%%%%%%%%%%%HSoptflow(shot,n)
f=size(shot.frames,
www.eeworm.com/read/481616/6636538
vhd r2p_corproc.vhd
--
-- file: r2p_corproc.vhd
--
-- XY to RA coordinate / rectangular to polar coordinates processor
--
-- uses: r2p_pre.vhd, r2p_cordic.vhd, r2p_post.vhd
--
-- rev. 1.1 June 4th, 2001. Richard Herveil
www.eeworm.com/read/257273/11936368
txt r2p_corproc.vhd.txt
-- file: r2p_corproc.vhd
-- XY to RA coordinate / rectangular to polar coordinates processor
-- uses: r2p_pre.vhd, r2p_cordic.vhd, r2p_post.vhd
-- rev. 1.1 June 4th, 2001. Richard Herveill
www.eeworm.com/read/224872/14565329
vhd r2p_corproc.vhd
--
-- file: r2p_corproc.vhd
--
-- XY to RA coordinate / rectangular to polar coordinates processor
--
-- uses: r2p_pre.vhd, r2p_cordic.vhd, r2p_post.vhd
--
-- rev. 1.1 June 4th, 2001. Richard Herveil
www.eeworm.com/read/219216/14891742
vhd r2p_corproc.vhd
--
-- file: r2p_corproc.vhd
--
-- XY to RA coordinate / rectangular to polar coordinates processor
--
-- uses: r2p_pre.vhd, r2p_cordic.vhd, r2p_post.vhd
--
-- rev. 1.1 June 4th, 2001. Richard Herveil
www.eeworm.com/read/439076/1820271
vhd r2p_corproc.vhd
--
-- file: r2p_corproc.vhd
--
-- XY to RA coordinate / rectangular to polar coordinates processor
--
-- uses: r2p_pre.vhd, r2p_cordic.vhd, r2p_post.vhd
--
-- rev. 1.1 June 4th, 2001. Richard Herveil
www.eeworm.com/read/195434/8155861
m bin2pol.m
% bin2pol.m
function y = bin2pol(x)
% bin2pol
% Converts binary numbers (0,1) to polar numbers (-1,1)
% Accepts a 1-D array of binary numbers
y = ones(1,length(x));
for i = 1:length(x)
if x(i)
www.eeworm.com/read/411956/11219510
m drawpp.m
function y=drawpp(m,e,wop)
figure,plot(10*log10(abs(e)))
thetas=[-90:90];
tm=thetas*pi/180;
am=exp(-j*pi*[0:m-1]'*sin(tm));
A=abs(wop.'*am); %阵列响应
A=A/max(A);
figure,polar(tm,A)
A=10*log10(A)