I want to export a graph dataset (points) (from SystemVue workspace Design_x Analysis) to be recognized by a plotting software. How do I do that?
The SystemVue print function only has "PrintScreen" ???
I want to export a graph dataset (points) (from SystemVue workspace Design_x Analysis) to be recognized by a plotting software. How do I do that?
The SystemVue print function only has "PrintScreen" ???
Here are some of the vehicles that come to mind for me for exporting SystemVue data to a 3rd party plotting tool (Ex: Excel, etc..). I think the best way would be (2) using fprintf() or xlswrite() type of Matlab script as shown below... If you would like more direct help to set it up, please contact your local Keysight EEsof SystemVue support hotline like in the US eesof_support@keysight.com or 1-800-473-3763.
Best Regards,
Mark
For example, see Design3 example in the following support page: SystemVue generate write vs source read data files Text wfm sdf arbitrary ASCII http://edadocs.software.keysight.com/x/cKuyCQ
For a quick example, see:
SystemVue 2013 Exporting Data to Excell and ASCII Files Example via Mathlang
fprint or Matlab xlswrite http://edadocs.software.keysight.com/x/dIb0Dw
Here is an example using fprintf... but you could use like Matlab xlswrite() type of function too:
y = getvariable('AutoRun', 'ACP_Lower_wDPD');
x = getvariable('GlobalParams', 'SweepList');
setindep('y', 'x');
fid_i =
fopen('myACPfile.txt', 'w');
[nrows,ncols] = size(y);
for col = 1:ncols
fprintf(fid_i, '%1.4f\t
%1.4f\r\n',y(:,col),x(:,col));
end
fclose(fid_i);
SystemVue or ADS Ptolemy Approaches to Import Load or Export Save Matlab Mat
Binary Data Files http://edadocs.software.keysight.com/x/ZpP5FQ