VLOOKUP

バージョン 1.0.0.0 (1.56 KB) 作成者: Kardi Teknomo
vlookup tutorial
ダウンロード: 2.4K
更新 2016/3/31

ライセンスの表示

This is matrix version of VLOOKUP similar to MS Excel function.
Return matrix b which has equal size as m and the values are taken from
from the n column of lookup table lut. It will replace all NaN with zero.

example how to use:
Type this 2 matrix data

> m = [ 1 2 0; 3 4 1]
> lut = [0 0.5 12; 1 0.8 25; 2 0.4 32; 3 0.7 41]

produces
m = [ 1 2 0;
3 4 1]
lut = [0 0.5 12;
1 0.8 25;
2 0.4 32;
3 0.7 41]
> b=vlookup(m,lut,3)
=> [25 32 12;
41 0 25]

> b=vlookup(m,lut,2)
=> [0.8 0.4 0.5;
0.7 0 0.8]

Written by Kardi Teknomo http://people.revoledu.com/kardi/

Note: the code consist of three different versions of vlookup, the fastest is only consist of two lines code uncommented.

引用

Kardi Teknomo (2024). VLOOKUP (https://www.mathworks.com/matlabcentral/fileexchange/12453-vlookup), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R10
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersMatrices and Arrays についてさらに検索
タグ タグを追加
謝辞

ヒントを得たファイル: vlookup - similar to MS Excel function

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

update the license