Code covered by the BSD License  

Highlights from
INTERFACE BETWEEN MATLAB AND CADENCE FOR MACRO-MODEL EXTRACTION

image thumbnail
from INTERFACE BETWEEN MATLAB AND CADENCE FOR MACRO-MODEL EXTRACTION by Philippe BENABES
launch cadence analog simulations from Matlab and extract a macromodel of linear analog functions

[]=write_verilog_real(fid,name,value)
function []=write_verilog_real(fid,name,value)
% Write vhdl Constant vector from value and name

    fprintf(fid, 'parameter real %s = ', name);
    fprintf(fid, '%.6e;\n', value);

end

Contact us at files@mathworks.com