Not enough input arguments.

조회 수: 1 (최근 30일)
Joe Joe
Joe Joe 2017년 8월 10일
편집: KSSV 2017년 8월 10일
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.

채택된 답변

KSSV
KSSV 2017년 8월 10일
편집: KSSV 2017년 8월 10일
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
Joe Joe
Joe Joe 2017년 8월 10일
Thank you KSSV. Your answer is very helpful for me.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by