原始文件 (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 我,此作品的版權所有人,釋出此作品至公共領域。此授權條款在全世界均適用。
這可能在某些國家不合法,如果是的話:
我授予任何人有權利使用此作品於任何用途,除受法律約束外,不受任何限制。

說明

添加單行說明來描述出檔案所代表的內容

在此檔案描寫的項目

描繪內容 繁體中文

多媒體型式 繁體中文

image/png

校驗和 繁體中文

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 使用了這個檔案: