代码搜索:Non-Uniform

找到约 441 项符合「Non-Uniform」的源代码

代码结果 441
www.eeworm.com/read/426535/9015443

m ex2406.m

%例24-6 非网格数据点绘图 %Ex24-6 non-uniform data close all clear x=rand(1,20); y=rand(1,20); z=cos(0.5.*x).*sin(y); xi=linspace(0,1,50); yi=linspace(0,1,50); [X,Y]=meshgrid(xi,yi); subplot(2,2,1) Z
www.eeworm.com/read/277286/10648627

f jaws.f

$alias fdopen='fdopen'(%val,%ref) include 'phigs.f1.h' ! get the HP-PHIGS aliases program Jaws ! file "Jaws.f" include 'phigs.f2.h' ! get the HP-PHIGS constants integer
www.eeworm.com/read/277286/10648646

f jaws4.f

$alias fdopen='fdopen'(%val,%ref) include 'phigs.f1.h' ! get the HP-PHIGS aliases program jaws4 ! file "jaws4.f" include 'phigs.f2.h' ! get the HP-PHIGS constants integ
www.eeworm.com/read/328265/13037401

m ex2406.m

%例24-6 非网格数据点绘图 %Ex24-6 non-uniform data close all clear x=rand(1,20); y=rand(1,20); z=cos(0.5.*x).*sin(y); xi=linspace(0,1,50); yi=linspace(0,1,50); [X,Y]=meshgrid(xi,yi); subplot(2,2,1) Z
www.eeworm.com/read/319404/13452632

m ex2406.m

%例24-6 非网格数据点绘图 %Ex24-6 non-uniform data close all clear x=rand(1,20); y=rand(1,20); z=cos(0.5.*x).*sin(y); xi=linspace(0,1,50); yi=linspace(0,1,50); [X,Y]=meshgrid(xi,yi); subplot(2,2,1) Z
www.eeworm.com/read/345494/11813202

m ex2406.m

%例24-6 非网格数据点绘图 %Ex24-6 non-uniform data close all clear x=rand(1,20); y=rand(1,20); z=cos(0.5.*x).*sin(y); xi=linspace(0,1,50); yi=linspace(0,1,50); [X,Y]=meshgrid(xi,yi); subplot(2,2,1) Z
www.eeworm.com/read/186716/8914477

m exp5_c6.m

function [out] = exp5_c6(power) % EXP5_C6 ..... Experiment 5 step C6. % % EXP5_C6( POWER ) performs the procedure outlined in step C6 of % experiment at the POWER level and returns the followi
www.eeworm.com/read/152755/12087420

m exp5_c6.m

function [out] = exp5_c6(power) % EXP5_C6 ..... Experiment 5 step C6. % % EXP5_C6( POWER ) performs the procedure outlined in step C6 of % experiment at the POWER level and returns the followi
www.eeworm.com/read/184267/9114073

m mulaw.m

function [y,a]=mulaw(x,mu) %MULAW mu-law nonlinearity for non-uniform PCM. % Y=MULAW(X,MU) % X=input vector. a=max(abs(x)); y=(log(1+mu*abs(x/a))./log(1+mu)).*signum(x);