Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

vs code

tchakounang
Beginner
418 Views

I am using VS Code and ifort. I would like to watch a matrix while debugging, but it doesn't work.

Can someone tell me if a solution has been found and explain how to solve this issue?

Thank you.

0 Kudos
1 Reply
jimdempseyatthecove
Honored Contributor III
358 Views

If the matrix (array) is located in a module (example "YourModule"), then you must prefex the name of the matrix (array) with the module name (similar to the scoping annotation in C++)

 

YourModule::YourMatrix

 

If need be, you can place index ranges (iow a slice of the matrix/array)

 

Jim Dempsey

0 Kudos
Reply