代码搜索:locate
找到约 4,554 项符合「locate」的源代码
代码结果 4,554
www.eeworm.com/read/364306/9913172
locate +y
www.eeworm.com/read/414769/11102526
for locate.for
SUBROUTINE locate(xx,n,x,j)
INTEGER j,n
REAL x,xx(n)
INTEGER jl,jm,ju
jl=0
ju=n+1
10 if(ju-jl.gt.1)then
jm=(ju+jl)/2
if((xx(n).ge.xx(1)).
www.eeworm.com/read/391726/8387470
txt locate.txt
procedure LOCATE(XX:array of real; N:integer; X:real; var J:integer);
label 10;
var
JL,JU,JM:INTEGER;
begin
JL:=0;
JU:=N + 1;
10: If JU - JL > 1 Then
begin
JM:=(JU + J
www.eeworm.com/read/192256/8394375
txt locate.txt
procedure LOCATE(XX:array of real; N:integer; X:real; var J:integer);
label 10;
var
JL,JU,JM:INTEGER;
begin
JL:=0;
JU:=N + 1;
10: If JU - JL > 1 Then
begin
JM:=(JU + J
www.eeworm.com/read/391341/8408034
asv locate.asv
function [sol,val] = locate(sol,options)
t=[1364 1204 1368 1156 1200 1302 1112 1286]/1000;
% x=[39487714.54 39487190.16 39486897.50 39486467.13 39485936.18 39486344.51...
% 39485491.82 3948755
www.eeworm.com/read/391341/8408039
m locate.m
function val= locate(x,x_cor,y_cor,z_cor,t,v)
c=find(t>0);
distance=sqrt((x(1)-x_cor(c)).^2+(x(2)-y_cor(c)).^2+(x(3)-z_cor(c)).^2);
val=sum((t(c)-x(4)-distance/v).^2);
www.eeworm.com/read/291235/8433353
cpp locate.cpp
#include "nr.h"
void NR::locate(Vec_I_DP &xx, const DP x, int &j)
{
int ju,jm,jl;
bool ascnd;
int n=xx.size();
jl=-1;
ju=n;
ascnd=(xx[n-1] >= xx[0]);
while (ju-jl > 1) {
jm=(ju+
www.eeworm.com/read/431754/8655906
cpp locate.cpp
void locate(double xx[], int n, double x, int& j)
{
int jl,ju,jm;
jl = 0;
ju = n + 1;
loop: if (ju - jl > 1)
{
jm = (ju + jl) / 2;
if ((xx[n] > xx[1]) && (x > xx[jm
www.eeworm.com/read/387489/8673015
txt locate.txt
procedure LOCATE(XX:array of real; N:integer; X:real; var J:integer);
label 10;
var
JL,JU,JM:INTEGER;
begin
JL:=0;
JU:=N + 1;
10: If JU - JL > 1 Then
begin
JM:=(JU + J
www.eeworm.com/read/283953/8976666