Input argument "s" is undefined ,what does this mean?
Ältere Kommentare anzeigen
function rec = interpolation(s,delta_est,phi_est,factor)
tic;
n=length(s);
i am getting error in the 3rd line..plz help
Antworten (2)
Mischa Kim
am 19 Feb. 2014
Bearbeitet: Mischa Kim
am 19 Feb. 2014
Neel, did you call the function with proper input arguments, such as
>> rec = interpolation([1;2],3,1) % I am just making up numbers here
With this function call n=2.
1 Kommentar
Neel
am 19 Feb. 2014
Dishant Arora
am 19 Feb. 2014
0 Stimmen
did you run it as script?? you need to call the function and pass on the input varaible. Go through this documentation:
Kategorien
Mehr zu Images finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!