photo

Nicolas Douillet


PhD, INRIA and CNRS alumni

Last seen: ein Tag vor Aktiv seit 2017

Followers: 10   Following: 26

Nachricht

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

Statistik

All
MATLAB Answers

21 Fragen
17 Antworten

File Exchange

87 Dateien

Cody

43 Probleme
517 Lösungen

RANG
8.506
of 300.392

REPUTATION
5

BEITRÄGE
21 Fragen
17 Antworten

ANTWORTZUSTIMMUNG
76.19%

ERHALTENE STIMMEN
5

RANG
1.179 of 20.934

REPUTATION
1.617

DURCHSCHNITTLICHE BEWERTUNG
5.00

BEITRÄGE
87 Dateien

DOWNLOADS
154

ALL TIME DOWNLOADS
10356

RANG
183
of 168.373

BEITRÄGE
43 Probleme
517 Lösungen

PUNKTESTAND
7.379

ANZAHL DER ABZEICHEN
33

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 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

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


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

9 Tage vor

Gelöst


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 Monate vor

Gelöst


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

2 Monate vor

Gelöst


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 Monate vor

Gelöst


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 Monate vor

Gelöst


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 Monate vor

Gelöst


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]

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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 Monate vor

Gelöst


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 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


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

3 Monate vor

Gelöst


Given area find sides
In a right angle triangle given area 'A' one arm=x, another arm=2x then find the value of x. For example, area A=400 then ...

3 Monate vor

Gelöst


02 - Vector Variables 4
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_2d.png>> (Logarithmically spaced numbers between 1 and 1...

3 Monate vor

Gelöst


04 - Scalar Equations 1
Define the variable a: <<http://samle.dk/STTBDP/Assignment1_4-a.png>> Use this to calculate x: <<http://samle.dk/STTBD...

3 Monate vor

Gelöst


03 - Matrix Variables 4
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_3d.png>> A 3x4 NaN (Not a Number) matrix (Hint: use ...

3 Monate vor

Gelöst


03 - Matrix Variables 3
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_3c.png>> A 10x10 matrix where the numbers from 1 to 100 ...

3 Monate vor

Gelöst


02 - Vector Variables 3
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_2c.png>> (all the numbers from 5 to -5 in increments of ...

3 Monate vor

Gelöst


Flipping
Write code that can reverse the vector without using any sort of loop. Example Given the input vector A = [ 1 2 3 4 5...

3 Monate vor

Gelöst


Back to basics 12 - Input Arguments
Covering some basic topics I haven't seen elsewhere on Cody. Return a value equal to the number of input arguments to the fun...

3 Monate vor

Gelöst


03 - Matrix Variables 2
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_3b.png>> A 9x9 matrix of zeros, but with the following v...

3 Monate vor

Mehr laden