MATLAB: Is there a way to plot multiple data sets on one Simth Chart in RF Toolbox 1.0.1 (R14SP1)

chart;datamultipleRF Toolboxsmith

I would like to place more than one data set on a Smith Chart using the SIMTHCHART function. For example I try the following:
smithchart(data1)
hold on
smithchart(data2)
The plot from SMITHCHART gets updated but only shows data2.

Best Answer

This bug has been fixed in Release 2006a (R2006a). For previous product releases, read below for any possible workarounds:
You can plot multiple data sets on one Simth Chart in the RF Toolbox. For example:
smithchart(data1)
hold on
plot(data2)