htmlPage('Matrix equation variables'); % Create a new html page to display the separate variables of the matrix equation MNA_vars = MNA.results(1); % MNA variables I_v = MNA_vars(1); % Vector with independent variables M = MNA_vars(2); % Matrix D_v = MNA_vars(3); % Vector with independent variables % Display text (including LaTeX) on the active html page. text2html('The vector $I_v$ with the independent variables equals:'); % Display an equation on the active html page. eqn2html(sym('I_v'), I_v); text2html('The matrix $M$ equals:'); eqn2html(sym('M'), M); text2html('The vector $D_v$ with the dependent variables equals:'); eqn2html(sym('D_v'), D_v);