如何在 Core Plot 中制作半对数图?

发布于 2024-11-28 03:46:52 字数 79 浏览 0 评论 0原文

我想通过使用 iOS 应用程序中的 Core Plot 制作半对数图来显示我的幅度谱数据。 但我找不到如何制作它。

有谁知道吗?

I'd like to make semi-log graph to show my amplitude spectrum data by using Core Plot in my iOS App.
But I couldn't find how to make it.

Does anyone know?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天荒地未老 2024-12-05 03:46:52

设置绘图空间的比例类型:

CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.xScaleType = CPTScaleTypeLinear; // this is the default
plotSpace.yScaleType = CPTScaleTypeLog;

您可以在 Core Plot 提供的示例应用程序中查看示例。 Mac CPTTestApp 中的轴演示使用对数轴,Plot Gallery 应用程序也有示例。

Set the scale type on the plot space:

CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.xScaleType = CPTScaleTypeLinear; // this is the default
plotSpace.yScaleType = CPTScaleTypeLog;

You can see samples in the example apps provided with Core Plot. The axis demo in the Mac CPTTestApp uses a log axis and the Plot Gallery app has examples as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文