Why I get "Fcn Block has a syntax error"?

16 views (last 30 days)
Bob
Bob on 7 Mar 2016
Edited: Bob on 18 Mar 2016

Accepted Answer

Walter Roberson
Walter Roberson on 7 Mar 2016
Edited: Walter Roberson on 7 Mar 2016
I do not see anything obvious. You could try retyping it again without any spaces just in case there is an extra blank that I am overlooking. I suspect that will not help.
However, you appear to be using an Interpreted MATLAB Block. Interpreted MATLAB Blocks can only have a single input, and so only a single variable name. There does not appear to be any way for the code to know where to retrieve a0, af, bf, n, or p. If you want to use multiple inputs, even if the inputs are constants, then you need to use a MATLAB Function Block (formerly known as an Embedded Function Block).
There is a possibility that you might be able to code something like
evalin('base', 'a0') + evalin('base', 'af') .* cos(evalin('base', n') * ..... etc
I do not know if it would be able to recognize that code or not. If it did, then the constants would have to be in the base workspace similar to if you had been using a From Workspace block.
My guess is that Interpreted MATLAB Blocks can only refer to one variable in their code.
  5 Comments
Bob
Bob on 7 Mar 2016
In conclusion, can I just write the function inside the Matlab Function Block like this?
function y = fcn(u)
y = 1 + sum ( [1 2 3 4 5 6 7 8] .* cos([1 2 3 4 5 6 7 8] .* 20 * u) + [1 2 3 4 5 6 7 8] .* sin([1 2 3 4 5 6 7 8] .* 20 * u) );
end
Instead of this:
function y = fcn(u)
y = a0 + sum( af .* cos(n * zp * u) + bf .* sin(n * zp * u) );
end
Because I am getting error If I don't.
I will still get the same result, won't I?
The only problem is that If I want to change the numbers I will have to open the Simulink and go to Matlab Function Block to change them, right?
One last thing, why I am getting this file "slprj" when I run my simulink model? I noticed that I get this file when I am using the Matlab Function Block?
Walter Roberson
Walter Roberson on 7 Mar 2016
To bring in values for a0, af and so on for a MATLAB Function Block, add input ports to the block and bring in the values from somewhere appropriate. Perhaps from a Constant Block.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!