How do you make individual points in a loglog graph appear? I am looking for the slope.

1 view (last 30 days)
I am creating a loglog graph using two matrices. One row has temperature values, the other has melting rate values. When I graph loglog(melting,temperature), I just get my line with a negative slope. How do I make the points that correspond with each matrix appear (ie: melting(1,1),temperature(1,1)) and so on?
Another question / approach: I am trying to do calcuations using the same matrices ie: lnk = log(melting) - temperature --> this would be the value for the point. I have a total of 5 different calculation that I would name 5 different variables and then I would love to plot those on a loglog graph.

Accepted Answer

dpb
dpb on 10 Jan 2020
hLL=loglog(melting,temperature,'x-'); % Save line handles; line + marker 'x'

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!