Clear Filters
Clear Filters

i want to set x-axis to be in Pico seconds , how to do that

2 views (last 30 days)
x = (tin-tex)*(-1.433426304e-12) %(3C*784)
hi= histogram(x)
ylabel('number of Ocuurance','fontsize',10);
xlabel('Time Difference in picoseconds');

Answers (1)

Walter Roberson
Walter Roberson on 2 Dec 2022
Edited: Walter Roberson on 2 Dec 2022
ax = gca;
ax.XRuler.Exponent = -12;
  8 Comments
Hagar Hendy
Hagar Hendy on 2 Dec 2022
Thanks a lot, foryou and for @Image Analyst , i didn't know the rules, sorry for question duplication

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!