C# equivalent of Excel's TINV function

John Mills

I am porting over some code from Microsoft Excel to C#. The Excel expression uses the TINV function. Is there an equivalent function in C# or .NET? If not, what C# code is necessary to reimplement this function?

wdavo

If you are using .NET 4.0 you can leverage the Chart class found in the System.Web.DataVisualization assembly (you will also need to add System.Web). E.G:

var chart = new System.Web.UI.DataVisualization.Charting.Chart();
double result = chart.DataManipulator.Statistics.InverseTDistribution(.05, 15);

//2.131449546

Documentation:

http://msdn.microsoft.com/en-us/library/system.web.ui.datavisualization.charting.statisticformula.inversetdistribution(v=vs.110).aspx

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

SQL Server equivalent of Excel's TINV function

From Dev

SQL Server equivalent of Excel's TINV function

From Dev

What is the MATLAB equivalent of Excel's NORMSDIST function?

From Dev

Cognos equivalent of excel's sumif() function

From Dev

What is the MATLAB equivalent of Excel's NORMSDIST function?

From Dev

Cognos equivalent of excel's sumif() function

From Dev

R equivalent of Excel's "Sumif(s)" function across like columns

From Dev

Is there a C# equivalent to python's type() function?

From Dev

C++ equivalent of Processing's map() function

From Dev

Equivalent of Excel Round function

From Dev

SQL Server - any equivalent of Excel's CHOOSE function?

From Dev

SQL round down by significance (equivalent of excel's floor function)

From Dev

Excel VBA equivalent of ADDRESS function

From Dev

C# equivalent of Actionscript's function apply and call?

From Dev

Is there any function equivalent to Matlab's imadjust in OpenCV with C++?

From Dev

What's the Go equivalent of a C++ static const function variable?

From Dev

Is there any function equivalent to Matlab's imadjust in OpenCV with C++?

From Dev

What is equivalent function of excel "fdist" function in R?

From Dev

is there an equivalent to Stata's egen function?

From Dev

How do I download a stock price in Excel 2013? Is there an equivalent to Google Doc's GoogleFinance spreadsheet function?

From Dev

Is there an equivalent of the C function mbsinvalid on Linux?

From Dev

Is there an equivalent to a nested recursive function in C?

From Dev

How to code Excel VBA equivalent of INDIRECT function?

From Dev

How to create the equivalent of Excel Solver valueof function?

From Dev

Clojure's equivalent to Lisp's atom function

From Dev

Python's equivalent for R's dput() function

From Dev

Python equivalent of Excel's PERCENTILE.EXC

From Dev

Java equivalent of C's poll()?

From Dev

Perl unpack "S*" equivalent in C

Related Related

  1. 1

    SQL Server equivalent of Excel's TINV function

  2. 2

    SQL Server equivalent of Excel's TINV function

  3. 3

    What is the MATLAB equivalent of Excel's NORMSDIST function?

  4. 4

    Cognos equivalent of excel's sumif() function

  5. 5

    What is the MATLAB equivalent of Excel's NORMSDIST function?

  6. 6

    Cognos equivalent of excel's sumif() function

  7. 7

    R equivalent of Excel's "Sumif(s)" function across like columns

  8. 8

    Is there a C# equivalent to python's type() function?

  9. 9

    C++ equivalent of Processing's map() function

  10. 10

    Equivalent of Excel Round function

  11. 11

    SQL Server - any equivalent of Excel's CHOOSE function?

  12. 12

    SQL round down by significance (equivalent of excel's floor function)

  13. 13

    Excel VBA equivalent of ADDRESS function

  14. 14

    C# equivalent of Actionscript's function apply and call?

  15. 15

    Is there any function equivalent to Matlab's imadjust in OpenCV with C++?

  16. 16

    What's the Go equivalent of a C++ static const function variable?

  17. 17

    Is there any function equivalent to Matlab's imadjust in OpenCV with C++?

  18. 18

    What is equivalent function of excel "fdist" function in R?

  19. 19

    is there an equivalent to Stata's egen function?

  20. 20

    How do I download a stock price in Excel 2013? Is there an equivalent to Google Doc's GoogleFinance spreadsheet function?

  21. 21

    Is there an equivalent of the C function mbsinvalid on Linux?

  22. 22

    Is there an equivalent to a nested recursive function in C?

  23. 23

    How to code Excel VBA equivalent of INDIRECT function?

  24. 24

    How to create the equivalent of Excel Solver valueof function?

  25. 25

    Clojure's equivalent to Lisp's atom function

  26. 26

    Python's equivalent for R's dput() function

  27. 27

    Python equivalent of Excel's PERCENTILE.EXC

  28. 28

    Java equivalent of C's poll()?

  29. 29

    Perl unpack "S*" equivalent in C

HotTag

Archive