Why Value of type "tf"is not convertible to double?

24 次查看(过去 30 天)
clc;
clear all;
x0=[0 0 0 0 0 0 ];
tic
xOptSim=fminsearch(@robot,x0);
car_sys = 500 s + 12500 ----------------------- 200 s^2 + 500 s + 12500 Continuous-time transfer function.
Warning: Ignoring extra legend entries.
Unable to perform assignment because value of type 'tf' is not convertible to 'double'.

Error in fminsearch (line 201)
fv(:,1) = funfcn(x,varargin{:});

Caused by:
Error using double
Conversion to double from tf is not possible.
t2=toc;
function [car_sys,u1] = robot(parametry)
X1=parametry(1);
X2=parametry(2);
X3=parametry(3);
X4=parametry(4);
X5=parametry(5);
X6=parametry(6);
m = 200; %kg
b = 500; %Ns/m
k = 12500; %N/m
car_sys = tf([b k],[m b k])
t = 0:0.001:10;
wd=7;
% Respuesta a bajas frecuencias
figure
u1 = sin(wd/2*t)+cos(wd*t);
lsim(car_sys, u1, t)
title('Niska charakterystyka częstotliwościowa')
legend('Odpowiedź systemu' , 'Lokalizacja' , 'SE')
ylim([-4 4])
end

回答(1 个)

Cris LaPierre
Cris LaPierre 2022-1-23
I believe the issue is because the order of your function outputs is not correct. The first output of your function needs to be the solution, u1. Try reversing the order of your output arguments.
x0=[0 0 0 0 0 0 ];
xOptSim=fminsearch(@robot,x0);
car_sys = 500 s + 12500 ----------------------- 200 s^2 + 500 s + 12500 Continuous-time transfer function.
Warning: Ignoring extra legend entries.
Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 1-by-10001.

Error in fminsearch (line 201)
fv(:,1) = funfcn(x,varargin{:});
function [u1,car_sys] = robot(parametry)
X1=parametry(1);
X2=parametry(2);
X3=parametry(3);
X4=parametry(4);
X5=parametry(5);
X6=parametry(6);
m = 200; %kg
b = 500; %Ns/m
k = 12500; %N/m
car_sys = tf([b k],[m b k])
t = 0:0.001:10;
wd=7;
% Respuesta a bajas frecuencias
figure
u1 = sin(wd/2*t)+cos(wd*t);
lsim(car_sys, u1, t)
title('Niska charakterystyka częstotliwościowa')
legend('Odpowiedź systemu' , 'Lokalizacja' , 'SE')
ylim([-4 4])
end
  1 个评论
Cris LaPierre
Cris LaPierre 2022-1-23
The new error is because your solution vector, u1, is not the same size as x0. One thing to look into is why you are not using your X values in your function.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by