Replace matlab function with user defined function in code
이전 댓글 표시
Hi, the existing function is as follows:
[a,e] = arburg(est_x1,PSam,k);
I would like to replace the arburg fucntion with the function in arburgw1.m in the code. How can I do that?
댓글 수: 4
Stephen23
2022년 12월 30일
"How can I do that?"
x=r_t; % !!! get rid of this line of code !!!
p=PSam; % !!! get rid of this line of code !!!
function varargout= arburgw( x, p, ventana)
..
end
When you write code before the FUNCTION() definition then you are turning that Mfile into a script and you will not be able to call the function from anywhere else. If you want to be able call that function somewhere else, then do not turn the Mfile into a script.
demos serghiou
2022년 12월 30일
Zahrah Walid
2022년 12월 30일
function [a,e]= arburgw( x, p, ventana)
..
end
Stephen23
2022년 12월 30일
"how do i get [a,e] from this function?"
Once you write a callable function (i.e not a script, as explained in my last comment), then you can simply call it with those output arguments, just as the introductory tutorials show:
[a_out,e_out] = arburgw1(..)
Note that you should replace the evil EVAL() with slightly more robust FEVAL().
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Language Support에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!