Courbe de Hilbert (fractale)

7 views (last 30 days)
ConanTaieb
ConanTaieb on 23 May 2017
Edited: ConanTaieb on 23 May 2017
En effet, Avez-vous une idée comment je peux créer une courbe d'Hilbert à partir d'un ensemble des points. le code suivant, pour créer les points:
variable.L=0.0015;
variable.C=0.0015;%
variable.dx=20.0e-06;
variable.dy=20.0e-06;
variable.l=round(variable.L/variable.dx); %dim 1 : nbre lignes
variable.c=round(variable.C/variable.dy); %dim 2 : nbre colonnes
[IX,IY] = ndgrid(1:1:variable.l,1:1:variable.c);

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!