[TOC]

disp

Display data without showing its variable name

Usage

disp(A)

Examples

Input
disp(['The interest rate is' blanks(1) int2str(3) '%'])
Output
The interest rate is 3%
Input
disp(randi(10,1,5))
Output
8.000   4.000   10.00   9.000   10.00
Input
disp(true(1,5))
Output
1  1  1  1  1
Input
f = @(x) x + 1;
disp(f)
Output
 @(x)x+1