photo

Nicolas Douillet


PhD, INRIA and CNRS alumni

Last seen: 3 giorni fa Attivo dal 2017

Followers: 10   Following: 26

Messaggio

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

Statistica

All
MATLAB Answers

20 Domande
16 Risposte

File Exchange

86 File

Cody

43 Problemi
516 Soluzioni

RANK
8.733
of 300.037

REPUTAZIONE
5

CONTRIBUTI
20 Domande
16 Risposte

ACCETTAZIONE DELLE RISPOSTE
75.0%

VOTI RICEVUTI
5

RANK
1.190 of 20.862

REPUTAZIONE
1.600

VALUTAZIONE MEDIA
5.00

CONTRIBUTI
86 File

DOWNLOAD
152

ALL TIME DOWNLOAD
10299

RANK
186
of 167.106

CONTRIBUTI
43 Problemi
516 Soluzioni

PUNTEGGIO
7.188

NUMERO DI BADGE
29

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 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

Visualizza badge

Feeds

Visto da

Inviato


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

5 giorni fa | 1 download |

4.0 / 5
Thumbnail

Inviato


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

7 giorni fa | 6 download |

5.0 / 5
Thumbnail

Inviato


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

8 giorni fa | 0 download |

0.0 / 5
Thumbnail

Inviato


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

12 giorni fa | 1 download |

5.0 / 5
Thumbnail

Inviato


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.

15 giorni fa | 4 download |

5.0 / 5
Thumbnail

Inviato


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

15 giorni fa | 5 download |

5.0 / 5
Thumbnail

Inviato


Mesh generation toolbox
Some useful tools for mesh generation

22 giorni fa | 6 download |

5.0 / 5
Thumbnail

Risolto


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

circa un mese fa

Risolto


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

circa un mese fa

Risolto


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

circa un mese fa

Risolto


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

circa un mese fa

Inviato


mesh processing toolbox
Some useful tools for mesh processing

circa un mese fa | 4 download |

5.0 / 5
Thumbnail

Inviato


PI3MFT
Printable Iterative 3D Meshed Fractal Toolbox

circa un mese fa | 1 download |

5.0 / 5
Thumbnail

Risolto


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

circa un mese fa

Inviato


PNSET
Prime Number Set Exploration Toolbox

circa 2 mesi fa | 1 download |

0.0 / 5
Thumbnail

Risolto


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]

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


Matlab Basics - y as a function of x
Write a function to calculate y as a function of x, such that y = 6x^2 + 5x - 2

circa 2 mesi fa

Risolto


Create a two dimensional zero matrix
You have to create a zero matrix of size (mxn) whose inputs are m and n and the elements of your matrix should be zeros. Exam...

circa 2 mesi fa

Carica altro