how to write a function which converts graphs from linear scale to logarithmic scale and plot them both?

1 view (last 30 days)
how to write a function which converts graphs from linear scale to logarithmic scale and plot them both?
in matlab r2019b

Accepted Answer

Matt J
Matt J on 23 Oct 2021
To convert the scale of an existing graph from linear to log, you can do,
set(gca,'YScale','log')
set(gca,'XScale','log')

More Answers (0)

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!