代码搜索:Increasing

找到约 326 项符合「Increasing」的源代码

代码结果 326
www.eeworm.com/read/163959/5504370

java timestamper.java

//$Id: Timestamper.java,v 1.1 2004/06/03 16:30:05 steveebersole Exp $ package org.hibernate.cache; /** * Generates increasing identifiers (in a single VM only). * Not valid across multiple VMs. Ide
www.eeworm.com/read/370636/9589572

m l2error.m

function y = l2error(x) % l2error - compute the decreasing of the % L^2 error from orthogonal coefficients. % % y = l2error(x); % % y[k]^2 = \sum_{i>=k}{ x~[i]^2 } % where x~ is x so
www.eeworm.com/read/370635/9589614

m perform_warping.m

function [t,u,v,ts,us,vs,I] = perform_warping(M,theta,P) % sampling location [Y,X] = meshgrid(1:P,1:P); % projection on orthogonal direction t = -sin(theta)*X(:) + cos(theta)*Y(:); u = cos(thet
www.eeworm.com/read/370635/9589666

m l2error.m

function y = l2error(x) % l2error - compute the decreasing of the % L^2 error from orthogonal coefficients. % % y = l2error(x); % % y[k]^2 = \sum_{i>=k}{ x~[i]^2 } % where x~ is x so
www.eeworm.com/read/147096/12583959

m stepfun.m

function y = stepfun(t,to) %STEPFUN Unit step function. % STEPFUN(T,T0), where T is a monotonically increasing vector, % returns a vector the same length as T with zeros where T < T0 % and ones w
www.eeworm.com/read/200619/15428531

m l2error.m

function y = l2error(x) % l2error - compute the decreasing of the % L^2 error from orthogonal coefficients. % % y = l2error(x); % % y[k]^2 = \sum_{i>=k}{ x~[i]^2 } % where x~ is x so
www.eeworm.com/read/101557/15826505

m stepfun.m

function y = stepfun(t,to) %STEPFUN Unit step function. % STEPFUN(T,T0), where T is a monotonically increasing vector, % returns a vector the same length as T with zeros where T < T0 % and ones w
www.eeworm.com/read/433114/8544809

m ds_header_sort.m

function index=ds_header_sort(dataset,varargin) % Function sorts the headers of the dataset structure "dataset" and creates an index % vector. Intended for used with seismic data and pseudo-wells. %
www.eeworm.com/read/433114/8544840

m l_sort.m

function wlog=l_sort(wlog,mnem,varargin) % Sort curves of a log so that a specified curve increases monotonically; % since the "depth" column of a log needs to increase strictly monotonically % a new
www.eeworm.com/read/275831/10794535

rb 03 - iterating over dates.rb

require 'date' (Date.new(1776, 7, 2)..Date.new(1776, 7, 4)).each { |x| puts x } # 1776-07-02 # 1776-07-03 # 1776-07-04 span = DateTime.new(1776, 7, 2, 1, 30, 15)..DateTime.new(1776, 7, 4, 7, 0, 0) sp