Skip to main content
10-Marble
May 15, 2023
Solved

Plotting failed

  • May 15, 2023
  • 2 replies
  • 1386 views

I am using MP8. In here i am able to plot for the lower values however when I try to go to the desired value it gives me error message is there anything I am missing?

 

Best answer by Werner_E

I am not sure what you actually are trying to plot, but you must take care that the row index does not exceed 519 and the column index does not exceed 511.

The following plots show plots of the values of the last column (#511) and of the last row (#519). The latter consists of all zeros.

Werner_E_0-1684187651152.png

Here are 3D plots of your data matrix:

Werner_E_3-1684188245267.png

 

 

 

 

2 replies

Werner_E25-Diamond IAnswer
25-Diamond I
May 15, 2023

I am not sure what you actually are trying to plot, but you must take care that the row index does not exceed 519 and the column index does not exceed 511.

The following plots show plots of the values of the last column (#511) and of the last row (#519). The latter consists of all zeros.

Werner_E_0-1684187651152.png

Here are 3D plots of your data matrix:

Werner_E_3-1684188245267.png

 

 

 

 

23-Emerald IV
May 15, 2023

There are only 512 columns in your data, Your first trace is trying to access column with index 520.

Your second trace uses a to index the columns, but a runs through all rows of your data, up to 519: same problem.

Try:

LucMeekes_0-1684187860773.png

Success!
Luc