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

1 view (last 30 days)
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

Answers (1)

Cris LaPierre
Cris LaPierre on 30 Mar 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 Comment
John D'Errico
John D'Errico on 30 Mar 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.

Sign in to comment.

Categories

Find more on Simulink in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!