Order Analysis - Retrieve "helidata"
2 次查看(过去 30 天)
显示 更早的评论
Hi Folks,
How do I get access to the helidata in the corresponding example
Thanks
2 个评论
Walter Roberson
2022-2-6
With respect to the link @Ivan Solodkov posted: "In this webinar, we create an App for order analysis of a vibration signal using MATLAB App Designer. "
回答(1 个)
Star Strider
2020-9-12
Try this:
load helidata
It uses rpmfreqmap, introduced in R2015b, so if you have that or other functions it uses, you should also have that .mat file.
Using:
q = which('helidata.mat')
produces:
q =
'C:\Program Files\MATLAB\R2020a\toolbox\signal\signal\helidata.mat'
so that tells you where it is.
Consider loading it as:
hd = load('helidata.mat')
loading it into the ‘hd’ structure, so you know what it contains and can choose to load all or part of its contents into your workspace. (I have not loaded it or looked at it, so I have no idea.)
2 个评论
Star Strider
2020-9-16
I am not certain when that was introduced, however it uses a function introduced in R2015b (as I noted above), so if you have that or a later version, you may have it. (I have R2020a, and I was able to find it.) Run the which call to see if you already have it.
My pleasure!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 S-Parameters and Linear Components 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!