web deployment of a transfer function of a system

1 view (last 30 days)
i have gone through some of the web deployment examples used in the Matlab guides, but i was wondering that can i deploy a matlab finction that creates a transfer function and gives plots of that transfer function. how to write .net equivalent to the matlab transfer function used in the control tool box,,, please help me in this regard. iam using Matlab R2011a amd MCR 7.15,, and MSVS 2008.... please give me some guide lines

Answers (1)

Walter Roberson
Walter Roberson on 6 Jan 2012
The restrictions on Builder NE are the same as the restrictions on MATLAB Compiler. The Control Systems Toolbox is supported, except for some GUI and the LTI Viewer. Anything you can invoke from the command line should be supported.
  1 Comment
suman
suman on 6 Jan 2012
thank you for the reply, but if say i have a simple matlab function that takes input form the user and finds a transfer function and plots a graph of it,,,,
function System=SysInputs(zeta,omega)
% WE CREATE A SECOND ORDER SYSTEM USING THE INPUTS
s=tf('s');
System= omega^2/(s^2+2*zeta*omega*s+omega^2);
end
and the web figure is code is
function responseOut=ResultWebFigure(zeta,omega)
f=figure;
s=tf('s');
System= omega^2/(s^2+2*zeta*omega*s+omega^2)
step(System)
stepinfo(System)
set(gcf,'color',[1,1,1])
responseOut=webfigure(f);
close(f);
end
,,,
then how should i do i code for the transfer function in the Vb.net,,,,
i have tried to take 's' as char but still not break through,,,,,
could you please help me inthis regard,,,,

Sign in to comment.

Categories

Find more on Get Started with MATLAB Compiler SDK 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!