what is that problem? "Optimization running. Error running optimization. Undefined function 'power' for input arguments of type 'timeseries'"
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
khaled awad
am 9 Aug. 2016
Kommentiert: Walter Roberson
am 9 Aug. 2016
how can I solve this problem
Optimization running. Error running optimization. Undefined function 'power' for input arguments of type 'timeseries'
I am using matlab R2016a, using genetic algorithm to get the minimum values for PID controller in a switched reluctance motor. please anyone can help tell me how to solve this problem? thanks
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 9 Aug. 2016
Consider for example,
a = timeseries(1:10);
a .^ 2
then that would generate that error, because you are trying to square the timeseries object.
Possibly you want to square the data in the object:
a.Data .^ 2
2 Kommentare
Walter Roberson
am 9 Aug. 2016
What is tout? What is spo? Are those created by "To Workspace" blocks in your simulation ?
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Problem-Based Optimization Setup 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!
