photo

Jeremiah Abimbola


自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

4 个提问
1 个回答

排名
294,710
of 301,481

声誉
0

贡献数
4 个提问
1 个回答

回答接受率
75.0%

收到投票数
0

排名
 of 21,298

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 174,719

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


How to generate random points within 3d pyramid inside a cuboid
P1: (0.000000e+00, 0.000000e+00, 0.000000e+00) P2: (0.000000e+00, 1.000000e+00, 0.000000e+00) P3: (1.000000e+00, 1.000000e...

7 years 前 | 0 个回答 | 0

0

个回答

提问


How to find the normal to a hemisphere surface
How do i find the normal to a hemisphere surface with radius r = 6, and center point c = [2,1,3];

7 years 前 | 1 个回答 | 0

1

个回答

已回答
how to generate random points located on the surface of a hemisphere with its center at (2, 1, 3) and a radius of 6?
N=5000; r = 6; center = [2,1,3]; P = zeros(N,3) ; plot3(center(1),center(2),center(3),'ro') hold on for i=1:N x1 = ra...

7 years 前 | 0

| 已接受

提问


how to generate random points located on the surface of a hemisphere with its center at (2, 1, 3) and a radius of 6?
N=500; r = 6; center = [2,1,3]; plot3(center(1),center(2),center(3),'ro') hold on for i=1:N x1 = rand; x2 = rand;...

7 years 前 | 3 个回答 | 0

3

个回答

提问


Why does my rand function not seem to work?
limit = 0.3266; s = 0; counter = 0; while 1 tmp = rand; disp(tmp) if tmp == limit break end ...

7 years 前 | 1 个回答 | 0

1

个回答