matlab中的相关函数
我正在使用matlab中的相关函数。我的代码是关于找到峰旁瓣比。 但问题是 corr 函数对于图像来说运行缓慢。该函数是否有其他替代方法以及计算峰旁瓣比的更好方法。 我在上传代码时发现一些问题,但可以邮寄给任何人以供参考。
I am using the correlation function in matlab. My code is about finding the peak to side lobe ratio.
But the problem is corr function works slow for images.Is there any other alternative for this function and any better method to calculate peak to sidelobe ratio.
I am finding some problems here in uploading the code but can mail anyone for the reference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
matlab 相关函数可以有效地实现其预期目的。如果是令人窒息的问题,您可以尝试以下方法,由 提供Matlab 表格。
或者,您可以使用 diff 函数查找斜率变化的点,帮助识别峰值,然后使用步骤 2。
The matlab correlation function works efficiently for what it is intended for. If it is choking point, you could try the following, courtesy of the Matlab Forms.
Alternatively, you could use the diff function to find the point where the slope changes, helping to identify the peak, and then use step 2.