跳至內容

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

斷定方法:​SHA-1 中文 (已轉換拼寫)

27,711 位元組

801 像素

1,002 像素

檔案歷史

點選日期/時間以檢視該時間的檔案版本。

日期/時間縮⁠圖尺寸使用者備⁠註
目前2023年6月30日 (五) 09:12於 2023年6月30日 (五) 09:12 版本的縮圖1,002 × 801(27 KB)PhreneticcReduced file weight with FileOptimizer in lossless compression mode.
2007年3月21日 (三) 20:18於 2007年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 使用了這個檔案: