Skip to content

Latest commit

 

History

History

03_Evenly_Distributed_Spherical

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README

Question

在球坐标系 $(\rho,\theta,\varphi)$ 下,产生上半球面上均匀分布的随机坐标点,给出其直接抽样方法。

Code

本实验对16807Schrage产生器进行单独封装,为的是以后实验方便继续调用,其代码在“Schrage_16807.py”中。

主程序在“hw3.py”中。

Data

提供了测试集数据“data_03.csv”,存储着上半球面坐标点(x,y,z)

代码中没有直接调用,而是采取“时间-种子”方式,现场形成随机数。

Import

主要用到numpy、time、pandas、matplotlib包