Plot 0s & 1s Matrix in GNUplot: Solve "No Usable Data" Error

AI Thread Summary
The discussion revolves around issues encountered while attempting to plot a 50x50 matrix of 0's and 1's using gnuplot. The user receives warnings indicating that the file is unreadable and that there is no usable data for auto-scaling the axis range. Despite trying various spacing formats in the .txt file, the problem persists. The user realizes they have entered an incorrect file path, which could contribute to the issue. Suggestions from others in the thread include posting the code and the text file for further assistance. Additionally, a reference to gnuplot documentation highlights the importance of proper data formatting, noting that the data file should define a grid with consistent point counts in each datablock. The discussion emphasizes the need for correct file paths and adherence to gnuplot's data structure requirements for successful plotting.
rolotomassi
Messages
52
Reaction score
0
I have a .txt file which is 50 rows x 50 columns filled with entirely 0's and 1's.

I have tried to plot the data with and without spaces between each column.

I keep getting this message:

gnuplot> splot 'C:\Users\raf\Desktop\PolymerProject\monte carlo code\directionInitial.txt' with pm3d
warning: Skipping unreadable file "C:\Users\raf\Desktop\PolymerProject\monte carlo code\directionInitial.txt"
warning: No usable data in this plot to auto-scale axis range
^
All points x value undefined

None of the advice online seems help/solve my problem. New to gnuplot so excuse me if this is obvious.
 
Technology news on Phys.org
rolotomassi said:
I have a .txt file which is 50 rows x 50 columns filled with entirely 0's and 1's.

I have tried to plot the data with and without spaces between each column.

I keep getting this message:

gnuplot> splot 'C:\Users\raf\Desktop\PolymerProject\monte carlo code\directionInitial.txt' with pm3d
warning: Skipping unreadable file "C:\Users\raf\Desktop\PolymerProject\monte carlo code\directionInitial.txt"
warning: No usable data in this plot to auto-scale axis range
^
All points x value undefined

None of the advice online seems help/solve my problem. New to gnuplot so excuse me if this is obvious.
Please post your code. Attaching your text file might be helpful, as well.
 
This what I enter into the command box:

gnuplot> set pm3d map
gnuplot> splot 'C:\Users\raf\Desktop\PolymerProject\monteCarloCode\directionInitial.txt'

As I said I've tried various different spacings in the .txt file.
 

Attachments

Just as I read my post back I realized I have entered the incorrect path file.
 
rolotomassi said:
This what I enter into the command box:

gnuplot> set pm3d map
gnuplot> splot 'C:\Users\raf\Desktop\PolymerProject\monteCarloCode\directionInitial.txt'

As I said I've tried various different spacings in the .txt file.
I found this documentation -- http://theochem.ki.ku.dk/on_line_docs/gnuplot/gnuplot_36.html
Your data file doesn't seem to match the format used in this example.
A simple example of plotting a 3-d data file is
splot 'datafile.dat'where the file "datafile.dat" might contain:

# The valley of the Gnu.
0 0 10
0 1 10
0 2 10

1 0 10
1 1 5
1 2 10

2 0 10
2 1 1
2 2 10

3 0 10
3 1 0
3 2 10

Note that "datafile.dat" defines a 4 by 3 grid ( 4 rows of 3 points each ). Rows (datablocks) are separated by blank records.

Note also that the x value is held constant within each dataline. If you instead keep y constant, and plot with hidden-line removal enabled, you will find that the surface is drawn 'inside-out'.

Actually for grid data it is not necessary to keep the x values constant within a datablock, nor is it necessary to keep the same sequence of y values. gnuplot requires only that the number of points be the same for each datablock. However since the surface mesh, from which contours are derived, connects sequentially corresponding points, the effect of an irregular grid on a surface plot is unpredictable and should be examined on a case-by-case basis.
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...
Back
Top