Skip to content

Commit

Permalink
refs #2245: Fix function arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Apr 25, 2017
1 parent 8dde56e commit 7805e51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modelica/Blocks/Tables.mo
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ MATLAB is a registered trademark of The MathWorks, Inc.
function getTable2DAbscissaUmin
"Return minimum abscissa value of 2-dim. table defined by matrix"
extends Modelica.Icons.Function;
input Modelica.Blocks.Types.ExternalCombiTable1D tableID;
input Modelica.Blocks.Types.ExternalCombiTable2D tableID;
output Real uMin[2] "Minimum abscissa value in table";
external"C" ModelicaStandardTables_CombiTable2D_minimumAbscissa(tableID, uMin)
annotation (Library={"ModelicaStandardTables", "ModelicaIO", "ModelicaMatIO", "zlib"});
Expand All @@ -1048,7 +1048,7 @@ MATLAB is a registered trademark of The MathWorks, Inc.
function getTable2DAbscissaUmax
"Return maximum abscissa value of 2-dim. table defined by matrix"
extends Modelica.Icons.Function;
input Modelica.Blocks.Types.ExternalCombiTable1D tableID;
input Modelica.Blocks.Types.ExternalCombiTable2D tableID;
output Real uMax[2] "Maximum abscissa value in table";
external"C" ModelicaStandardTables_CombiTable2D_maximumAbscissa(tableID, uMax)
annotation (Library={"ModelicaStandardTables", "ModelicaIO", "ModelicaMatIO", "zlib"});
Expand Down

0 comments on commit 7805e51

Please sign in to comment.