Incorrect number of input arguments

5 visualizaciones (últimos 30 días)
Hidd_1
Hidd_1 el 25 de En. de 2022
Comentada: Voss el 25 de En. de 2022
I wrote the following code, and I got a message error regarding the input arguments:
lgd_1 = legend(app.UIAxes,'dTdhw(°C)','VDHW(L/min)','SP_VDHW(L/min)','Location','northoutside','Interpreter','none','Orientation','horizontal');
title(app.UIAxes,lgd_1,'string(app.Appliance_Model_1) + " Buit by: " + string(app.Appliance_Manufacturer_1), "Test info: " + string(app.Test_info_1)','Interpreter','none')
I got the following error message and I don't know why?!
Incorrect number of input arguments

Respuesta aceptada

Voss
Voss el 25 de En. de 2022
It doesn't make sense to pass your legend to the title() function. You can remove it:
lgd_1 = legend(app.UIAxes,'dTdhw(°C)','VDHW(L/min)','SP_VDHW(L/min)','Location','northoutside','Interpreter','none','Orientation','horizontal');
title(app.UIAxes,'string(app.Appliance_Model_1) + " Buit by: " + string(app.Appliance_Manufacturer_1), "Test info: " + string(app.Test_info_1)','Interpreter','none')
  4 comentarios
Hidd_1
Hidd_1 el 25 de En. de 2022
The following code worked
lgd_1 = legend(app.UIAxes,'dTdhw(°C)','VDHW(L/min)','SP_VDHW(L/min)','Location','northoutside','Interpreter','none','Orientation','horizontal');
title(lgd_1,[string(app.Appliance_Model_1) + " Buit by: " + string(app.Appliance_Manufacturer_1), "Test info: " + string(app.Test_info_1)],'Interpreter','none')
Thanks ;)
Voss
Voss el 25 de En. de 2022
Great!

Iniciar sesión para comentar.

Más respuestas (1)

Benjamin Thompson
Benjamin Thompson el 25 de En. de 2022
Might need to see more code, or simplify your example down to one that does not depend on "app".
Initial guess is that the title function can only accept an axis object or legend object as the first argument, so you cannot pass both of them as the first two arguments. Since you passed axes to legend in the first line, trying to use legend again may be unnecessary, as the legend would have been put in your axis object already.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by