Input argument "s" is undefined ,what does this mean?
显示 更早的评论
function rec = interpolation(s,delta_est,phi_est,factor)
tic;
n=length(s);
i am getting error in the 3rd line..plz help
回答(2 个)
Mischa Kim
2014-2-19
编辑:Mischa Kim
2014-2-19
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.
Dishant Arora
2014-2-19
0 个投票
did you run it as script?? you need to call the function and pass on the input varaible. Go through this documentation:
类别
在 帮助中心 和 File Exchange 中查找有关 Big Data Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!