Feeds
질문
Why this program keep saying Error using plotting>getC Too many output arguments. Error in plotting (line 9) res(i)=getC(1,0,100);? The getC returns c, which is only one output(a number),where're the 'too many' outputs?
Here's my scripts,I'm new to Matlab and really couldn't figure out how to fix this problem... function plotting clc ...
거의 9년 전 | 답변 수: 2 | 0
2
답변답변 있음
Why this program keep saying Error using plotting>getC Too many output arguments. Error in plotting (line 9) res(i)=getC(1,0,100);? The getC returns c, which is only one output(a number),where're the 'too many' outputs?
if true function plotting clc close all x = linspace(1,2,2); res=zeros(1,length(x)); for i=1:length(x) xpt=x(i); ...
Why this program keep saying Error using plotting>getC Too many output arguments. Error in plotting (line 9) res(i)=getC(1,0,100);? The getC returns c, which is only one output(a number),where're the 'too many' outputs?
if true function plotting clc close all x = linspace(1,2,2); res=zeros(1,length(x)); for i=1:length(x) xpt=x(i); ...
거의 9년 전 | 0