% obtain the symbolic MNA matrix equation of the network % % simType('symbolic'); % Set the simulation type to 'symbolic' gainType('vi'); % Set the gain type to 'vi' (calculation of voltages or current using Cramer's rule) dataType('matrix'); % Set the data type to 'matrix', this is the type of output data we want MNA = execute(); % Assign the matrix equation (execution result) to the variable MNA htmlPage('Matrix equations'); % Create a html page to display the matrix equation matrices2html(MNA); % Put the matrix equation on this page