fileName = 'myFirstRCnetwork'; % file name without extension assigned to the variable: "fileName" %makeNetlist(fileName); % Uncomment this line if netlist generation from within the MATLAB environment % yields no errors, otherwise create the netlist file manually! checkCircuit(fileName); % This check the netlist and creates the MNA equation of the circuit htmlPage('Circuit data'); % This creates a web page with the circuit data head2html('Circuit diagram'); % Places a header (level 2) on the web page img2html([fileName, '_asc.png'], 369); % This places the picture of the circuit on the web page (width=369px) netlist2html(fileName); % This places the netlist on the web page elementData2html(); % This places all the properties of all the network elements on the web page params2html(); % This lists the symbolic and numeric values of all network parameters on the web page % % Here, we will insert instructions later % stophtml(); % This closes the active html page