Syntax error in simulink function

3 visualizzazioni (ultimi 30 giorni)
Hello, can you help me find the error in this function?
(1/L)*(-R*u(1)+ws*L*u(2)-md*u(3)+Ud)

Risposta accettata

Walter Roberson
Walter Roberson il 27 Nov 2015
There is no obvious syntax error there, but the code would fail if L is a vector (or matrix) or if both L and ws are vectors or matrices when size(ws,2) is not the same as size(L,1)
You might need
(1./L) .* (-R*u(1) + ws .* L * u(2) - md*u(3) +Ud)
  1 Commento
Akylas Strathgakos
Akylas Strathgakos il 28 Nov 2015
They are simple variables ,thank you for the answer though

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Simulink Functions in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by