help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: axis text do not plot


From: Bjørn Kvamme
Subject: Re: axis text do not plot
Date: Mon, 3 May 2021 15:00:05 +0200

Thank you very much for the reply Nicholas



Here is the datafile enclosed 

Best regards,
Bjørn

man. 3. mai 2021 kl. 14:14 skrev Nicholas Jankowski <jankowskin@asme.org>:


On Sun, May 2, 2021 at 9:54 AM bjkvamme <bjkvamme@gmail.com> wrote:
load hyd3D


I'm unable to reproduce your results. Obviously I don't have the starting dataset (hyd3D). but if I try to produce a meshc with a dummy dataset, and then follow the meshc with your annotation commands, I get results that show the axis labels. 

[X, Y] = meshgrid (linspace (-3, 3, 40));
Z = sqrt (abs (X .* Y)) ./ (1 + X.^2 + Y.^2);
meshc (X, Y, Z);
xlabel ("Delta x",'Color',"k",'fontsize',10)
ylabel ("T (K)",'Color','k','fontsize',10)          
zlabel ("Diff. (kJ/mole)",'Color','k','fontsize',10)          
set(gca,'fontsize',10)
grid on  

What version of Octave, operating system, and graphics toolkit are you running?     (type graphics_toolkit at the command line).  Can you try the plot using other toolkits?  

graphics_toolkit('qt')
graphics_toolkit('fltk')  
graphics_toolkit('gnuplot')  

and see if you get the same or different results?  On my system (Octave 6.2.0 on windows) i get the same results showing axis labels using all three with all three toolkits, but it might help us determine what's causing your error.
 

Attachment: hyd3D
Description: Binary data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]