loglog plot ticks + getdata
Show older comments
Hello dear community,
This question is probably more then just Matlab related but I hope it can be answered. My main aim is, to import following chart into matlab and get Atl Value (y-axis) in regards of the test signal voltage Vs.

I have a function (for example)
function [AtlValue] = Atl(Vs, Integ)
and when I cast this function with the Vs and the Integration Time, my function should tell me what is the corresponding Y-value.
So I tried different approaches here. First to plot a loglog figure and just draw the chart in this figure to save it later. However I struggled here because of the ticks. It does not work, when I add a tick starting from 0 to 0.01 and then 0.1, 1, 10, 100

Even when this would work, I do not know how to draw this chart in this mode...
My second approach was to create the lines segmented. So first from 0 to 0.01 like this:
x = logspace(0,0.01,100);
This approach also did not work quite well because it starts somehow at 1...
So my question would, if someone could give some hints and tips how I could correctly implement this chart into matlab. It is not necessary, that I do have the chart visually. It would be enough to have the data in an array.
Please let me know, if more information is needed.
Thank you very much!
Best regards, Eska
Accepted Answer
More Answers (0)
Categories
Find more on Labels and Styling 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!