random.hpp

来自「1 gps基本算法」· HPP 代码 · 共 53 行

HPP
53
字号
#pragma ident "$Id: random.hpp 252 2006-10-20 14:59:51Z btolman $"//============================================================================////  This file is part of GPSTk, the GPS Toolkit.////  The GPSTk is free software; you can redistribute it and/or modify//  it under the terms of the GNU Lesser General Public License as published//  by the Free Software Foundation; either version 2.1 of the License, or//  any later version.////  The GPSTk is distributed in the hope that it will be useful,//  but WITHOUT ANY WARRANTY; without even the implied warranty of//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//  GNU Lesser General Public License for more details.////  You should have received a copy of the GNU Lesser General Public//  License along with GPSTk; if not, write to the Free Software Foundation,//  Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA//  //  Copyright 2004, The University of Texas at Austin////============================================================================/** * @file random.hpp * Simple random number generator. */#ifndef GPSTK_GEOMATICS_RANDOM_INCLUDE#define GPSTK_GEOMATICS_RANDOM_INCLUDE/// Generate random numbers uniformly distributed from 0 to 1.double Rand(long seed=0);/// Generate normally distributed random numbers, zero mean and /// sqrt of variance sigma.  Uses Box-Muller and Rand().double RandNorm(double sigma);/// Return random integers between low and hi. Seed the generator by calling/// Rand(seed) before this call.int ARand(int low, int hi);/// Return random doubles between low and hi. Seed the generator by calling/// Rand(seed) before this call.double ARand(double low, double hi);/// Generate a random walk sequence, given sqrt variance sigma, time step dt/// and previous point xlast.double RandomWalk(double dt, double sigma, double xlast);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?