help-octave
[Top][All Lists]
Advanced

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

Re: Convert y-axis from feet to meters


From: Juan Pablo Carbajal
Subject: Re: Convert y-axis from feet to meters
Date: Fri, 29 Dec 2017 19:26:48 +0100

Dear MK,

The axes know nothing about the units you are using. You can just
change the y tick labels to the values in meters

Example:
assume you have a ROW vector "y_meters" with the values in meters

ytxt = strsplit (num2str (y_meters));
set (gca, 'yticklabel', ytxt);



reply via email to

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