photo

Jeremiah Abimbola


Con actividad desde 2019

Followers: 0   Following: 0

Estadística

MATLAB Answers

4 Preguntas
1 Respuesta

CLASIFICACIÓN
294.743
of 301.511

REPUTACIÓN
0

CONTRIBUCIONES
4 Preguntas
1 Respuesta

ACEPTACIÓN DE RESPUESTAS
75.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.308

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 174.936

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 2
  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


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...

casi 7 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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];

casi 7 años hace | 1 respuesta | 0

1

respuesta

Respondida
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...

casi 7 años hace | 0

| aceptada

Pregunta


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;...

casi 7 años hace | 3 respuestas | 0

3

respuestas

Pregunta


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 ...

alrededor de 7 años hace | 1 respuesta | 0

1

respuesta