I am trying to use Matlab to evaluate a continuous transfer function using data I am generating in a .net application. I have created a M file with the following code:
function out = transfer(in)
s = tf('s')
H = s^2/(s^2+5*s+6.25)
end
What should the input parameter be, and how to use it with the transfer function H?
Once I know that, I'm guessing I can use the various ways of hitting a matlab function from .net; which shouldn't be too bad once I have the function correct.