Click here to Skip to main content
15,883,827 members
Articles / Programming Languages / Visual Basic

Fun with continued fractions

Rate me:
Please Sign up or sign in to vote.
4.83/5 (8 votes)
26 Sep 2012CPOL5 min read 42.6K   387   14  
Illustrates the calculation and the usefulness of continued fractions
<?xml version="1.0"?>
<doc>
<assembly>
<name>
ContinuedFractions
</name>
</assembly>
<members>
<member name="M:ContinuedFractions.MainWindow.InitializeComponent">
	<summary>
InitializeComponent
</summary>
</member><member name="T:ContinuedFractions.MainWindow">
	<summary>
MainWindow
</summary>
</member><member name="M:ContinuedFractions.Application.InitializeComponent">
	<summary>
InitializeComponent
</summary>
</member><member name="M:ContinuedFractions.Application.Main">
	<summary>
Application Entry Point.
</summary>
</member><member name="T:ContinuedFractions.Application">
	<summary>
Application
</summary>
</member><member name="P:ContinuedFractions.My.MyWpfExtension.Application">
	<summary>
 Returns the application object for the running application
 </summary>
</member><member name="P:ContinuedFractions.My.MyWpfExtension.Computer">
	<summary>
 Returns information about the host computer.
 </summary>
</member><member name="P:ContinuedFractions.My.MyWpfExtension.User">
	<summary>
 Returns information for the current user.  If you wish to run the application with the current 
 Windows user credentials, call My.User.InitializeWithWindowsUser().
 </summary>
</member><member name="P:ContinuedFractions.My.MyWpfExtension.Log">
	<summary>
 Returns the application log. The listeners can be configured by the application's configuration file.
 </summary>
</member><member name="P:ContinuedFractions.My.MyWpfExtension.Windows">
	<summary>
 Returns the collection of Windows defined in the project.
 </summary>
</member><member name="T:ContinuedFractions.My.MyWpfExtension">
	<summary>
 Module used to define the properties that are available in the My Namespace for WPF
 </summary>
	<remarks></remarks>
</member><member name="P:ContinuedFractions.My.Resources.Resources.ResourceManager">
	<summary>
  Returns the cached ResourceManager instance used by this class.
</summary>
</member><member name="P:ContinuedFractions.My.Resources.Resources.Culture">
	<summary>
  Overrides the current thread's CurrentUICulture property for all
  resource lookups using this strongly typed resource class.
</summary>
</member><member name="T:ContinuedFractions.My.Resources.Resources">
	<summary>
  A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member><member name="M:ContinuedFractions.Evaluate.Evaluate(System.String)">
	<summary>
 Sorce of code: Programming Visual Basic .NET Author: Franceisco Balena. The code is modified from the original, as this one can deal with complex numbers
 </summary>
	<param name="Input"></param>
	<returns></returns>
	<remarks></remarks>
</member><member name="M:ContinuedFractions.Evaluate.DoFunc2(System.Text.RegularExpressions.Match)">
	<summary>
 This is a bit unnessesary since Atan2 dosnt exist for 2 variables but it shows how to deal wit this kind of function
 </summary>
	<param name="m"></param>
	<returns></returns>
	<remarks></remarks>
</member>
</members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Norway Norway
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions