Institut de Robòtica i Informàtica Industrial

display

PURPOSE ^

Displays an interval matrix.

SYNOPSIS ^

function display(I)

DESCRIPTION ^

 Displays an interval matrix.

 Displays an interval matrix, I.

CROSS-REFERENCE INFORMATION ^

This function calls:
This function is called by:
  • Simulation Simulates a robot performing Pose SLAM.
  • display Displays the type of filter F.
  • display Displays a balanced tree.
  • display Displays a PoseData object.
  • display Displays the information of a Gaussian (mean and covariance).

SOURCE CODE ^

0001 function display(I)
0002 % Displays an interval matrix.
0003 %
0004 % Displays an interval matrix, I.
0005 
0006   for i=1:I.r
0007     for j=1:I.c
0008       fprintf('[%f %f] ',I.lower(i,j),I.upper(i,j));
0009     end
0010     fprintf('\n');
0011   end


Institut de Robòtica i Informàtica Industrial

Generated on Fri 24-Jul-2009 12:32:50 by m2html © 2003