User`s guide
R2009b
15-26
Compatibility Considerations
• In previous versions, the Plot Selector automatically assigned variables named t
and time to the x-axis. Now, the variable you select first always plots on the x- axis.
Use the switch variable input order button to interchange the x and y variables
before plotting them.
• In previous versions, clicking Plot Selector > More Plots opened the Plot Catalog
tool. Now, you click Catalog at the bottom of the Plot Selector GUI to open the Plot
Catalog tool. The Plot Catalog has not changed.
Certain Print Options and Devices Now Warn When Used
The following print command option and device now throw warnings when used and will
be removed in a future release:
Option/
Device
Warning ID Warning Text
'-adobecset'
print option
'MATLAB:print:
adobecset:DeprecatedOption'
The -adobecset option
will be removed in a future
release.
'-dill' print
device (native
support
for Adobe
Illustrator)
'MATLAB:print:
Illustrator:DeprecatedDevice'
The '-dill' print device
will be removed in a future
release. Use Encapsulated
PostScript ('-depsc')
instead.
If you wish to prevent these warnings from displaying, use the warning command.
• To disable the warning generated by using the –adobecset print option:
warning('off', 'MATLAB:print:adobecset:DeprecatedOption');
• To disable the warning generated by using the –dill print device:
warning('off', 'MATLAB:print:Illustrator:DeprecatedDevice');
Compatibility Considerations
If you have developed code that uses the previous option or device, in the future you must
remove such calls or replace them with other code.