Too many ouput argument
이전 댓글 표시
Hi everyone, basically this is the coding that has been given to me.
%% setting up some variables
ws = round(620*100); % as ws is input in cycles, and better to have it in samples
[m,n] = size(@stateS3FastAnkleAngle);
state = [@stateS3FastAnkleAngle;NaN*ones(ws,n)]; % we extend the state space with NaN, so that we don't run into problems later
divergence = NaN*ones(m*n_neighbours,ws); % set up the output divergence matrix
but after I run the coding, it states that too many output argument. Can someone help me? I'm still newbie in Matlab and wanted to learn more.

댓글 수: 5
Peng Li
2020년 4월 3일
what does this stateS3FastAnkleAngle return, or what are your m and n?
redroses
2020년 4월 3일
Ameer Hamza
2020년 4월 3일
There are syntax issues in your code, and you cannot have function handles numeric data in the same array.
state = [@stateS3FastAnkleAngle;NaN*ones(ws,n)];
Can you explain what problem you are trying to solve?
redroses
2020년 4월 3일
Stephen23
2020년 4월 5일
This is very odd:
NaN*ones(ws,n)
Much better:
nan(ws,n)
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!