Interpolation gives NAN output
1 次查看(过去 30 天)
显示 更早的评论
I have one array with height values and another with density.
Height = [386.5 446.1 526.6 621.5 660.6 711.4 734.9 792.8 810.2 817.9 893.7 1136.8 1317 1420.2 1426.2]
Density = [1.216 1.203 1.194 1.182 1.178 1.171 1.169 1.161 1.160 1.160 1.151 1.122 1.101 1.091 1.091]
I want to interpolate, so I can find the density of any heights. F.eks find the density at 500m. I have tried to do this:
Out = interp1(Height,Density,500);
But this only gives NAN numbers as output. I really cant understand, because I tried exactly the same earlier, and then it worked.
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!