Need Instantaneous PID Value
古いコメントを表示
I am using PID controller and the input is 3x1. The output I am getting is in 3x1 tf format. But I need it to be 3x1 double at a single time instant.
(I will use a for loop later in which T_x will vary. At this moment, I am initializing T_x as [0;0;0])
Following is the code:
T_x=[0;0;0];
T_d=[0;0;0]; %desired value
T_e=T_d-T_x;
C_PD = pid(100,0,10,100);
T_u=T_e*C_PD
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Dynamic System Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!