Not enough input arguments.

1 Ansicht (letzte 30 Tage)
Joe Joe
Joe Joe am 10 Aug. 2017
Bearbeitet: KSSV am 10 Aug. 2017
Hi everyone, I'm a beginner of Matlab user. I have a problem for carving a dinosaur demo. This is ">> voxels = makevoxels(85) Error using spacecarving.makevoxels (line 12) Not enough input arguments." Please help me how to resolve this problem. Thanks.

Akzeptierte Antwort

KSSV
KSSV am 10 Aug. 2017
Bearbeitet: KSSV am 10 Aug. 2017
You are not providing all the inputs..you need to call the function like below:
xlim = [0 1] ;
ylim = [0 1] ;
zlim = [0 1] ;
N = 100 ;
voxels = findpeak(xlim,ylim,zlim,N) ;
You need to provide xlim, ylim, zlim which are 1x2 arrays and a number N.
  1 Kommentar
Joe Joe
Joe Joe am 10 Aug. 2017
Thank you KSSV. Your answer is very helpful for me.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by