Is it possible to zoom in with the MATLAB Web Server?

1 view (last 30 days)
Is it possible to zoom in with the MATLAB Web Server?
I would like to zoom in on the results of the MATLAB web server as I do on the results of MATLAB. Is this possible?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
Since the MATLAB Web Server simply returns an image to the browser, it is not possible to interactively zoom in or out on the results. The only option is to make use of the AXIS command in your code somewhere:
- Try an analysis of the data and decide what domain and range to display for your graph before returning the image to the web browser.
- If your calculations are quick and therefore easily rerunable, try a zoom percent field on your main page. Then, in your MATLAB code, get the current domain and range after the plot command. You could then set the plot to a new value based on the user input, and then return that plot to the web browser.

More Answers (0)

Categories

Find more on Install Products 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!