i want to set x-axis to be in Pico seconds , how to do that
2 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Image Analyst
2022-12-2
Multiply your x by 10^12.
bar(x*1e12, y, 1);
xlabel('Time Difference in picoseconds');
3 个评论
Image Analyst
2022-12-2
I said to use bar, not histogram. If the data is a histogram, then use histcounts to get the y data (counts) or else pass 'Edges' in to histogram
x = (tin-tex)*(-1.433426304e-12)
[counts, edges] = histcounts(x);
ylabel('number of Occurrences', 'FontSize', 15);
xlabel('Time Difference in picoseconds' 'FontSize', 15);
bar(edges(1:end-1), counts);
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!