Live functions versus function
22 views (last 30 days)
Show older comments
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
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).
Answers (1)
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.)
See Also
Categories
Find more on Environment and Settings 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!