- Timestamp:
- 04/03/12 08:24:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Formatters/SymbolicDataAnalysisExpressionLatexFormatter.cs
r7696 r7697 146 146 } else if (node.Symbol is HyperbolicSineIntegral) { 147 147 strBuilder.Append(@"\operatorname{hypSinInt} \left( "); 148 } else if (node.Symbol is Norm) { 149 strBuilder.Append(@"\operatorname{norm} \left( "); 148 150 } else if (node.Symbol is Psi) { 149 151 strBuilder.Append(@"\operatorname{digamma} \left( "); … … 275 277 } else if (node.Symbol is HyperbolicSineIntegral) { 276 278 throw new InvalidOperationException(); 279 } else if (node.Symbol is Norm) { 280 throw new InvalidOperationException(); 277 281 } else if (node.Symbol is Psi) { 278 282 throw new InvalidOperationException(); … … 364 368 } else if (node.Symbol is HyperbolicSineIntegral) { 365 369 strBuilder.Append(@" \right) "); 370 } else if (node.Symbol is Norm) { 371 strBuilder.Append(@" \right) "); 366 372 } else if (node.Symbol is Psi) { 367 373 strBuilder.Append(@" \right) ");
Note: See TracChangeset
for help on using the changeset viewer.