how to use helperGaitPlot?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Matlaber
am 22 Jan. 2019
Kommentiert: Star Strider
am 5 Feb. 2019
How to use helperGaitPlot
helperGaitPlot('als1m');
xlim([0 30])
when i run, it said:
>> helperGaitPlot('als1m');
xlim([0 30])
Undefined function or variable 'helperGaitPlot'.
In this link Link
I checked, is not about Matlab version
9 Kommentare
Jan
am 28 Jan. 2019
You have to run the shown commands inside Matlab, of course, not in the shell of your operating system. Start Matlab and run the commands in Matlab's command window.
Akzeptierte Antwort
Star Strider
am 28 Jan. 2019
Try this:
query = which('HelperGaitPlot.m')
When I run it, I get:
query =
'C:\Users\<MyUserNameOnThisComputer>\Documents\MATLAB\Examples\signal\GaitAnalysisExample\helperGaitPlot.m'
I am also running R2018b.
10 Kommentare
Star Strider
am 5 Feb. 2019
If I remember correctly, it just loads and displays the file. It doesn’t do any processing, so you’re not missing anything by not having it.
Weitere Antworten (2)
Jan
am 28 Jan. 2019
Let me guess: You typed
helperGaitPlot('als1m')
in the command shell of the operating system? Then the problem is clear: Run it inside Matlab. Start Matlab and type the commands in Matlab's command window.
2 Kommentare
Siehe auch
Kategorien
Mehr zu Install Products finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!