I have an 32x32
matrix called I and would like to try to plot it. I.e. the two axes should range from 1 to 32 each and on the z-axis
I would like to see the different values.
If it is possible to connect those points even better, not the most important part right now.
I've tried it using the package "library(emdbook)
", however the following line
curve3d(I[x,y], xlim=c(1:N), ylim=c(1:N))
However, it delivers me the error "Error in I[x, y] : object of type 'closure' is not subsettable".
I'm happy for any suggestion on what to change :)
Thank you!