Why do I receive the error: Unrecognized function or variable 'V_o'?

1 visualización (últimos 30 días)
Edwin
Edwin el 30 de Mzo. de 2025
Comentada: John D'Errico el 30 de Mzo. de 2025
Please guide me to solve the following error:
Warning: The specified buffer for 'Convertidor_Boost/Mean/Model/Transport Delay' was too small. During simulation, the buffer size was
temporarily increased to 106496. In order to generate code, you need to update the buffer size parameter
Unrecognized function or variable 'V_o'.
Error in Run_Convertidor_Boost (line 62)
plot(tt1,V_o)
Thank you so much,
Edwin Rodríguez Jiménez

Respuestas (1)

Cris LaPierre
Cris LaPierre el 30 de Mzo. de 2025
The most likely reason is that you have not yet defined a variable with that name in your code. Did you define a variable V_0 or V_O instead of V_o?
% Recreated the error message
% Define a variable tt1 but not V_o
tt1 = 1:10;
plot(tt1,V_o)
Unrecognized function or variable 'V_o'.
  1 comentario
John D'Errico
John D'Errico el 30 de Mzo. de 2025
This is a mistake I make myself at times. o and 0 live right next to each other on the keyboard. And they can look a lot alike, depending on the font. So I'd bet @Cris LaPierre is right.

Iniciar sesión para comentar.

Categorías

Más información sobre Simulink en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by