Clear Filters
Clear Filters

Live functions versus function

21 views (last 30 days)
Matthieu
Matthieu on 12 Sep 2022
Edited: Matthieu on 13 Sep 2022
Hello, I don't see advantage of live functions versus functions, except the block of text....
Could you explain how to take advantage of Live funcitions ?
What are the practices that take advantages of Live functions ? Example ? way to code&debug faster or simpler or with more explainations ?
I found nothing on matlab website to enlight this (A lot of things are available for live scripts...).
Thanks
  1 Comment
Rik
Rik on 12 Sep 2022
Not being a user, I suspect most of the advantages are to be found in the report generation tools.
The tab completion used to be much more feature-rich in the live editor, but that has been merged into the normal editor in R2021b (IIRC).

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 12 Sep 2022
Live Script allow a lot of annotation, including text and equations and images. That makes them well suited for tutorial-type use, which is quite popular for academic purposes, and for report generation purposes. These days all of the newer Mathworks examples use Live Script so that they can discuss in human-readable form what is happening, while also mixing in the code.
Live Script also permits interactive controls "in-line" -- rather than having a pop-up figure containing a slider, the code can have the slider show up right near the place that the slider is used, thereby allowing the user to play with the slider to explore the results on execution of a section.
Thus, Live Script provide improved User Experience for "Human In The Loop" types of programs (as opposed to pure calculation programs -- but even pure calculation programs often benefit a lot from being able to insert equations and images right there in the comments.)
  1 Comment
Matthieu
Matthieu on 13 Sep 2022
Edited: Matthieu on 13 Sep 2022
Hello Walter, thanks for your answer however my questions was not about Live scipts but on Live Functions :
With Live Functions : I don't understand how to use : interactive controls "in-line", how to play with the slider to explore the results on execution of a section. no plot update od plot occurs ...
I don't understand how to use : Section break also in Live functions

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!