필터 지우기
필터 지우기

How much memory is occupied by 2-D look up table?

조회 수: 1 (최근 30일)
Ashwini
Ashwini 2013년 5월 28일
How much memory is occupied by 2-D look up table?

답변 (1개)

Iain
Iain 2013년 5월 28일
A 2-D look up table should consist of:
2 vectors, one "n"*8 bytes, another "m"*8 bytes (8 bytes assuming double format numbers) 1 array of n * m * 8 bytes.
The smallest 2-D lookup table, woiuld therefore take 24 bytes, for a 1x1 lookup table. The smallest useful lookup table would be 64 bytes (2x2)
A more realistic LUT would be 100 x 100, which would take 81,600 bytes. (plus small overheads)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by