User`s guide

R2008b
14-4
Compatibility Considerations
In previous releases, when you opened the Adjust Contrast tool, the Window/Level tool
automatically turned on at the same time. Note that the Window/Level tool still turns on
when you call imcontrast from the command line.
immovie Command No Longer Shows Preview
immovie no longer opens a figure window to display the movie as it is being created. You
can display and explore the output of immovie using implay.
Compatibility Considerations
If you want to use movie to visualize the output but don't know how to set up the figure
appropriately, call imshow on one of the movie frames first before calling movie.
Replace Calls to ipttable Function with MATLAB uitable Function
The ipttable function is being deprecated and will be removed in a future release.
Compatibility Considerations
If you used the ipttable function to display tabular data, you should replace use of
ipttable with the MATLAB function uitable.
If you used the cell array syntax of ipttable, make the following changes to your code
to achieve a similar effect using uitable. For more information about using uitable,
see the uitable function reference page.
R2008a Code R2008b Code
table =
ipttable(parent,cell_array_data);
table =
uitable(parent,'Data',cell_array_data);
If you used the struct syntax of ipttable, make the following changes to your code to
achieve a similar effect with uitable.
R2008a Code R2008b Code
table =
ipttable(parent,struct_data);
field_names = fieldnames(struct_data);
values = struct2cell(struct_data);