what does ... do in matlab?
이전 댓글 표시
I have a code that begins function [Aprojeigbnd,upperAbnd,n,Ecard,cputimeprojeigbnd,cputimeupper]=... newV0sparsetest(imax,k,densn)
I can't seem to figure out what the ... is doing, but matlab doesn't like it if it gets removed.
댓글 수: 1
It is explained in the documentation: http://www.mathworks.com/help/matlab/matlab_prog/continue-long-statements-on-multiple-lines.html
답변 (1개)
John D'Errico
2016년 6월 8일
0 개 추천
It allows you to continue a line to the next line. Otherwise long lines will be unreadable.
Without that though to indicate a continued line, you would have line fragments that would be invalid syntax.
카테고리
도움말 센터 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!