代码搜索:polar si9000
找到约 1,508 项符合「polar si9000」的源代码
代码结果 1,508
www.eeworm.com/read/491360/1191682
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) == 0
www.eeworm.com/read/485361/1263289
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) == 0
www.eeworm.com/read/485361/1263358
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) == 0
www.eeworm.com/read/173155/5376208
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) == 0
www.eeworm.com/read/173155/5376276
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) == 0
www.eeworm.com/read/270429/4238164
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) == 0
www.eeworm.com/read/270429/4238233
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) == 0
www.eeworm.com/read/486921/6520327
m rlocuszp.m
ng=input('Zero,eg:[-1 -2 -3]:"');
dg=input('"Polar.eg:[-1 -2 -3 -4];"');
k=input('"Gain k.eg:1"');
G=zpk(ng,dg,k);
rlocus(G);
grid on ;
hold on;
[num,den]=zp2tf(ng',dg',k)
disp('"the roots of
www.eeworm.com/read/38039/1090706
mnu polparams.mnu
POLAR#PARAMS 极坐标参数
# remove the # sign and enter foreign help string in this line
Ang#Spacing 角间距
Modify angle between radial grid lines.
修改径向栅格线间的幅角。
Num#Lines 线数
Modify number of the radial grid li
www.eeworm.com/read/471742/6888568
m ellipse.m
%ellipse.m - script to draw an ellipse with minimum radius rmim and
%eccentricity e.
clear;
rmin=2.5;
e=0.6;
th=[0:0.1:2*pi];
r=rmin*(1+e)./(1+e*cos(th));
rmax=rmin*(1+e)./(1+e*cos(pi));
polar