Display Variables Conveniently

Simple to use function for display
151 Downloads
Updated 15 Apr 2014

View License

The dis() function helps to display variables for debugging easily and conveniently.
Keeping track of changing variables during loops can be tedious sometimes. This simple function helps to produce a display variables in a simple and appealing manner with more functionality than Matlab's disp() function.
Usage:
a = 1; b = 2;
dis( a, b );
a = 1
b = 2

- Use '\n' to generate new line
dis( a, '\n', b );
a = 1

b = 2

- Use of varname
dis( 'value of a', a );
value of a = 1

- Display vectors:
x = (0:4) * pi/4;
dis( x );
x = 0 0.785398 1.5708 2.35619 3.14159

You can mix these features in the input randomly. Note that for calculations, indexed vectors and structs you will not see the input printed out literally.

Cite As

GerdaHotlich (2024). Display Variables Conveniently (https://www.mathworks.com/matlabcentral/fileexchange/46244-display-variables-conveniently), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2013b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Debugging and Analysis in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.1.0.0

updated description

1.0.0.0