Azzera filtri
Azzera filtri

how to solve this error when i use matlab function

5 visualizzazioni (ultimi 30 giorni)
翰旭
翰旭 il 22 Gen 2024
Commentato: 翰旭 il 25 Gen 2024
Simulink does not have enough information to determine output sizes for this block. If you think the errors below are inaccurate, try specifying types
function y = fcn(R1,R2,w,f,l)
y = (1-(R1/R2)^w*exp(1)^(-f*l/R2));
  5 Commenti
Walter Roberson
Walter Roberson il 23 Gen 2024
Try
function y = fcn(R1,R2,w,f,l)
y = 0;
y = (1-(R1./R2).^w.*exp(-f.*l./R2);
翰旭
翰旭 il 25 Gen 2024
sorry! i try this code, but the same problem still occurs.

Accedi per commentare.

Risposte (1)

Fangjun Jiang
Fangjun Jiang il 22 Gen 2024
Make sure your function is correct. Manually give a numerical example value to obtain the resulting y value.
In the MATLAB Function block editor, click "Edit data" and specify the size of y, for example, 1, or [2,3] or whatever.

Community Treasure Hunt

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

Start Hunting!

Translated by