<VBox> <HBox><HTML><B>Scilab Expressions <Glue/> </HBox> <xsl:for-each select="outputs"> <Table mode="cell" location="fixed" size="dynamic" listener="TableListener"> <tableChanged> <xsl:call-template name="context"/> </tableChanged> <tableAdd insert="selection"> <xsl:call-template name="context"/> <item value="0.0"/> </tableAdd> <tableDel delete="selection"> <xsl:call-template name="context"/> </tableDel> <tableCol title="" width="30" attr="label"/> <tableCol title="Values" attr="value" editable="true"/> <xsl:for-each select="item"> <tableRow label="{concat('y', format-number(position(), '0'))}" value="{@value}"/> </xsl:for-each> </Table> </xsl:for-each> <HBox><HTML><B>Input test values <Glue/> <Button text="Execute"/> </HBox> <xsl:for-each select="inputs"> <Table mode="cell" location="fixed" size="dynamic" listener="TableListener"> <tableChanged> <xsl:call-template name="context"/> </tableChanged> <tableAdd> <xsl:call-template name="context"/> <item value="0.0"/> </tableAdd> <tableCol title="" width="30" attr="label"/> <tableCol title="Values" attr="value" editable="true" /> <xsl:for-each select="item"> <tableRow label="{concat('u', format-number(position(), '0'))}" value="{@value}" /> </xsl:for-each> </Table> </xsl:for-each> <HBox> <xsl:call-template name="BooleanCheckBox"> <xsl:with-param name="attr-name">zero-crossing</xsl:with-param> </xsl:call-template> Use zero-crossing <Glue/> </HBox> </VBox>