代码搜索:Nearest

找到约 1,596 项符合「Nearest」的源代码

代码结果 1,596
www.eeworm.com/read/341613/12075616

m odd.m

function y=odd(x); %ODD Round towards nearest odd value. % Y=ODD(X) rounds each element of X towards the nearest odd % integer value. If an element of X is even, ODD adds +1 to % this value. X can b
www.eeworm.com/read/152624/12096377

m gobad.m

close all; clear; clc; %J=imread('cmanJ.tif'); J=imread('b.tif'); se = translate(strel(1), [30 20]); J = imdilate(I,se); J = imrotate(J,45,'nearest','crop'); %imwrite(J,'cmanJother.tif'); ims
www.eeworm.com/read/152020/12151116

m gobad.m

close all; clear; clc; %J=imread('cmanJ.tif'); J=imread('b.tif'); se = translate(strel(1), [30 20]); J = imdilate(I,se); J = imrotate(J,45,'nearest','crop'); %imwrite(J,'cmanJother.tif'); ims
www.eeworm.com/read/253950/12173580

m knnfwd.m

function [y, l] = knnfwd(net, x) %KNNFWD Forward propagation through a K-nearest-neighbour classifier. % % Description % [Y, L] = KNNFWD(NET, X) takes a matrix X of input vectors (one vector % per ro
www.eeworm.com/read/253939/12176571

m odd.m

function y=odd(x); %ODD Round towards nearest odd value. % Y=ODD(X) rounds each element of X towards the nearest odd % integer value. If an element of X is even, ODD adds +1 to % this value. X can b
www.eeworm.com/read/339665/12211571

m knnfwd.m

function [y, l] = knnfwd(net, x) %KNNFWD Forward propagation through a K-nearest-neighbour classifier. % % Description % [Y, L] = KNNFWD(NET, X) takes a matrix X of input vectors (one vector % per ro
www.eeworm.com/read/150905/12250459

m knnfwd.m

function [y, l] = knnfwd(net, x) %KNNFWD Forward propagation through a K-nearest-neighbour classifier. % % Description % [Y, L] = KNNFWD(NET, X) takes a matrix X of input vectors (one vector % per ro
www.eeworm.com/read/234666/14102170

m odd.m

function y=odd(x); %ODD Round towards nearest odd value. % Y=ODD(X) rounds each element of X towards the nearest odd % integer value. If an element of X is even, ODD adds +1 to % this value. X can b
www.eeworm.com/read/130603/14181918

m transformimage.m

function [r,g,b] = transformImage(A,Ar,Ac,Nrho,Ntheta,Method,Center,Shape) % Inputs: A the input image % Nrho the desired number of rows of transformed image % Ntheta
www.eeworm.com/read/232055/14209846

m examp8_1.m

x=0:.12:1; y=(x.^2-3*x+5).*exp(-5*x).*sin(x); plot(x,y,x,y,'o') x1=0:.02:1; y0=(x1.^2-3*x1+5).*exp(-5*x1).*sin(x1); y1=interp1(x,y,x1); y2=interp1(x,y,x1,'cubic'); y3=interp1(x,y,x1,'spline'); y