Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a 2d Array (float*) with the size 1280*720 for some bitmap process. I want to display it as what I do in matlab. But I found the Memory Window in visual studio has a limit of 512 cols. When I set the num of column in Memory Window biger than 512, it change to 512 automatic. How can I disable the limit? or I must output the 2d array into a file, and use matlab to load the file and check the value?
Posted

1 solution

You can use the paging like this:

Quote:

Paging in the Memory Window

The Memory window has a vertical scrollbar that operates in a nonstandard manner. The address space of a modern computer is very large, and you could easily get lost by grabbing the scrollbar thumb and dragging it to a random location. For that reason, the thumb is "spring-loaded" and always remains in the center of the scrollbar. In native code applications, you can page up or down, but cannot scroll about freely.

Higher memory addresses appear at the bottom of the window. To view a higher address, scroll down, not up.
To page up or down in memory

To page down (move to a higher memory address), click under the thumb in the vertical scrollbar.

To page up (move to a lower memory address), click above the thumb the vertical scrollbar.
 
Share this answer
 
Comments
Bin Chou 5-Jan-16 6:12am    
thanks. but what I want is set number of columns to 1280, once I set it to 1280, it change to 512 automatic. there is nothing about the vertical scrollbar or pageup pagedown.
Leo Chapiro 5-Jan-16 6:21am    
I don't think that this is possible: instead you can "slide" with the constant window size over the memory by using paging ...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900