Problem 861. Memory Map File: Access and Update

Challenge is to read data from a memory map file and also update the file.

Memory Mapping allows placing large static arrays in virtual memory with good point access times. Minimal consumption of valuable RAM occurs. Medium size TB files can be Mapped on a 64 bit machine. Who has TBs of Hard drive?

With Write Access the Actual file gets data permanently overwritten.

(Note: 8GB logical vector took 60 sec on first large access. Subsequent large accesses returned in msec domain)

Applications include Genome Mapping .

Input: Memory Mapped Variable

Output: Value of location 1

Update location 2 to value of 2

Example:

x is variable

x.data(1:4) is [1234  1111  54543  32465]
Change x.data(2) to 2 
x.data(1:4) becomes  [1234  2  54543  32465]
Output location 1 value: 1234

Follow Up Challenge: Busting the Cody 3GB Memory Limit using multiple mapped files.

Solution Stats

37.5% Correct | 62.5% Incorrect
Last Solution submitted on Feb 22, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers18

Suggested Problems

More from this Author294

Problem Tags

Community Treasure Hunt

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

Start Hunting!