Help vectors size doesn't match...why?
古いコメントを表示
This is my code to evaluate Lagrange where x_in are the given interpolation points and x_out is suppose to be f(x_in), but it keeps saying x_in and x_out don;t have the same vector length
x = -1:50;
y = 1.0 ./ (1+9*x.^2);
x_in=linspace(-1,1,100);
x_out=(1.0) ./ (1+9*(x_in).^2);
y_out=make_Ln(x,x_in,x_out);
plot(x,y,':',x_in,y_out,'*');
title('Lagrange Interpolation:x_in=linspace(-1,1,100)')
legend('y','Interpolation');
figure;
6 件のコメント
Zoltán Csáti
2014 年 10 月 23 日
Show your make_Ln function.
Guillaume
2014 年 10 月 23 日
And also give us the exact error message you get, particularly the bit that shows you the failing instruction.
cakey
2014 年 10 月 23 日
cakey
2014 年 10 月 23 日
cakey
2014 年 10 月 23 日
cakey
2014 年 10 月 23 日
編集済み: Andrei Bobrov
2014 年 10 月 24 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!