photo

Nicolas Douillet


PhD, INRIA and CNRS alumni

Last seen: 3 días hace Con actividad desde 2017

Followers: 10   Following: 26

Mensaje

Interested in computational geometry, image processing, 3D reconstruction, geometry, mesh processing, mesh generation, number theory, fractals.

Programming Languages:
MATLAB
Spoken Languages:
English, French
Pronouns:
He/him

Estadística

All
MATLAB Answers

21 Preguntas
16 Respuestas

File Exchange

86 Archivos

Cody

43 Problemas
517 Soluciones

CLASIFICACIÓN
8.354
of 300.352

REPUTACIÓN
5

CONTRIBUCIONES
21 Preguntas
16 Respuestas

ACEPTACIÓN DE RESPUESTAS
76.19%

VOTOS RECIBIDOS
5

CLASIFICACIÓN
1.179 of 20.928

REPUTACIÓN
1.611

EVALUACIÓN MEDIA
5.00

CONTRIBUCIONES
86 Archivos

DESCARGAS
150

ALL TIME DESCARGAS
10347

CLASIFICACIÓN
184
of 168.212

CONTRIBUCIONES
43 Problemas
517 Soluciones

PUNTUACIÓN
7.229

NÚMERO DE INSIGNIAS
30

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • MATLAB Mini Hack Participant
  • Revival Level 1
  • Thankful Level 3
  • Draw Letters
  • Famous
  • 5-Star Galaxy Level 5
  • Editor's Pick
  • CUP Challenge Master
  • Leader
  • Curator
  • Community Group Solver
  • Introduction to MATLAB Master

Ver insignias

Feeds

Ver por

Resuelto


find powers of two
find the unique, non-repeating, powers of 2 that sum to a given non-zero integer, n example: n = 23 result = [1 2 4 16] ...

5 días hace

Enviada


PNSET
Prime Number Set Exploration Toolbox

11 días hace | 1 descarga |

5.0 / 5
Thumbnail

Pregunta


Toolboxes invisible in the file exchange list
Hi, Over the last few years I developped some toolboxes, like the mesh processing toolbox, but I recently realized they were ...

17 días hace | 1 respuesta | 0

1

respuesta

Enviada


isinpolygon
Function to check if a vertex is located inside or outside a given polygon. Overloaded for arrays of points.

alrededor de 1 mes hace | 1 descarga |

4.0 / 5
Thumbnail

Enviada


isinconvexset (2D, 3D)
Function to verify if one given point is in or out a given convex 2D (polygon) or 3D (polyhedron) convex set, excluding its boun...

alrededor de 1 mes hace | 6 descargas |

5.0 / 5
Thumbnail

Enviada


isPointin3Dtriangle
Function to check if a point P belongs to a given ABC triangle in 3D, boundary included. Overloaded for arrays of points.

alrededor de 1 mes hace | 0 descargas |

0.0 / 5
Thumbnail

Enviada


Line to line distance (3D / 2D) [FAST]
A function to compute the -minimum- distance between two lines in 3D space

alrededor de 1 mes hace | 1 descarga |

5.0 / 5
Thumbnail

Enviada


Point to plane distance [FAST]
Distance from a point to a plane. Overloaded for multiple points and planes. Coordinates of projected point(s) also provided.

alrededor de 1 mes hace | 4 descargas |

5.0 / 5
Thumbnail

Enviada


Point to line distance [FAST]
Distance from a point to a 3D/2D line. Overloaded for multiple points and lines. Coordinates of projected point(s) also provided...

alrededor de 1 mes hace | 5 descargas |

5.0 / 5
Thumbnail

Enviada


Mesh generation toolbox
Some useful tools for mesh generation

alrededor de 2 meses hace | 5 descargas |

5.0 / 5
Thumbnail

Resuelto


Matlab Basics - Rounding I
Write a script to round x DOWN to the next lowest integer: e.g. x = 2.3 --> x = 2 also: x = 2.7 --> x = 2

2 meses hace

Resuelto


What percentage?
Calculate the output c as the percentage of a on b for given a and b.

2 meses hace

Resuelto


How many days in a month?
Return the number of days in a given month in 2017. If the input is not a valid month number, return -1. Examples: Input...

2 meses hace

Resuelto


Who invented zero?
We know the importance zero in computer science, mathematics... but who invented zero? Clue: He was the first in the line ...

2 meses hace

Enviada


mesh processing toolbox
Some useful tools for mesh processing

2 meses hace | 7 descargas |

5.0 / 5
Thumbnail

Enviada


PI3MFT
Printable Iterative 3D Meshed Fractal Toolbox

2 meses hace | 1 descarga |

5.0 / 5
Thumbnail

Resuelto


Sum of big primes without primes
Inspired by Project Euler n°10 (I am quite obviously a fan). With problem n°250 by Doug, you can find some global methods to co...

2 meses hace

Resuelto


Prime numbers between a , b.
Find all prime number between a & b (including a and b). example: a=100 b=120 y= [101 103 107 109 113]

2 meses hace

Resuelto


Is it prime?
Given a number, check whether it is prime or not. If prime output is true, otherwise false.

2 meses hace

Resuelto


Find all prime factors of the input
Given an input x, find its all prime factors. Return the vector with all factors in ascending order. Efficiency is the key here...

2 meses hace

Resuelto


prime test 2
enter the only non prime,non composite number

2 meses hace

Resuelto


Give prime Numbers upto n
You are given a input number x; print all the prime numbers less than equal to x.

2 meses hace

Resuelto


Largest Prime Number
Given a matrix X, find the largest prime number in X.

2 meses hace

Resuelto


03 - Matrix Variables 6
Make _fMat_ be a 5x3 matrix of random integers with values from -3 to 3 (Hint: use *randi*)

3 meses hace

Resuelto


Replacing a row
For matrix G=[1 2 3; 4 5 6; 7 8 9] Replace the 2nd row with 8s **remember to create matrix G

3 meses hace

Resuelto


select the primes of a vector
Find the prime numbers in a vector

3 meses hace

Resuelto


04 - Scalar Equations 2
Define the variables a and b: <<http://samle.dk/STTBDP/Assignment1_4-a.png>> <<http://samle.dk/STTBDP/Assignment1_4-b.png>...

3 meses hace

Resuelto


04 - Scalar Equations 3
Define the variables a, b, and c: <<http://samle.dk/STTBDP/Assignment1_4-a.png>> <<http://samle.dk/STTBDP/Assignment1_4-b....

3 meses hace

Resuelto


Vectors counting by 2
Create a vector numbers from 7 to 15 in increments of 2

3 meses hace

Resuelto


Back to basics 15 - classes
Covering some basic topics I haven't seen elsewhere on Cody. Return the class of the input variable.

3 meses hace

Cargar más