Order Analysis - Retrieve "helidata"

조회 수: 1 (최근 30일)
deltanabla
deltanabla 2020년 9월 12일
댓글: Walter Roberson 2022년 2월 6일
Hi Folks,
How do I get access to the helidata in the corresponding example
Thanks
  댓글 수: 2
Ivan Solodkov
Ivan Solodkov 2022년 2월 6일
편집: Walter Roberson 2022년 2월 6일
Walter Roberson
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
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
deltanabla
deltanabla 2020년 9월 16일
Ah... it looks like I need to download the R2020a version to get access to the file?
Thanks
Star Strider
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 CenterFile 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!

Translated by