File:Bilininterp.png

页面内容不支持其他语言。
這個文件來自維基共享資源
维基百科,自由的百科全书

原始文件(1,002 × 801像素,文件大小:27 KB,MIME类型:image/png


摘要

Own work.

Illustrates bilinear interpolation on the unit square. The four corners have fixed values as indicated in the figure, and the values in between are interpolated, and the interpolated values are represented by the colour.

Done in Matlab, source code:

# Grid of known points:
>> [X, Y] = meshgrid(0:1)
# Grid for interpolated values:
>> [XI,YI] = meshgrid(0:0.001:1);
# Known values to interpolate from:
>> Z = [0 1; 1 0.5]
# Do bilinear interpolation
>> ZI = interp2(X,Y,Z,XI,YI);
# Visualize result:
>> surf(XI,YI,ZI, 'EdgeColor','none'); alpha(0.9)
>> view([0 90])
>> print -dpng Bilininterp.png

See also

许可协议

Public domain 我,本作品著作权人,释出本作品至公有领域。这适用于全世界。
在一些国家这可能不合法;如果是这样的话,那么:
我无条件地授予任何人以任何目的使用本作品的权利,除非这些条件是法律规定所必需的。

说明

添加一行文字以描述该文件所表现的内容

此文件中描述的项目

描繪內容

6f32086b17f8bf437dad2f68a9540490d19937ef

27,711 字节

801 像素

1,002 像素

文件历史

点击某个日期/时间查看对应时刻的文件。

日期/时间缩⁠略⁠图大小用户备注
当前2023年6月30日 (五) 09:122023年6月30日 (五) 09:12版本的缩略图1,002 × 801(27 KB)PhreneticcReduced file weight with FileOptimizer in lossless compression mode.
2007年3月21日 (三) 20:182007年3月21日 (三) 20:18版本的缩略图1,002 × 801(37 KB)BerlandOwn work. Illustrates bilinear interpolation on the unit square. The four corners have fixed values as indicated in the figure, and the values in between are interpolated, and the interpolated values are represented by the colour.

以下页面使用本文件:

全域文件用途

以下其他wiki使用此文件: