Skip to content

Commit

Permalink
Merge pull request #1 from matheusneder/migration
Browse files Browse the repository at this point in the history
Migration
  • Loading branch information
matheusneder authored Jun 2, 2019
2 parents c197a96 + 349ce3d commit 1ebfdc3
Show file tree
Hide file tree
Showing 229 changed files with 35,085 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[*.{c,h}]
indent_style = tab
indent_size = 4
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# root-finding
# Root finding

Root finding of mathematical functions using numerical calculus algorithms writed in C language (C ISO/IEC 9899:1990). I wrote this project while studying numerical calculus on university. I migrated it from Google Code (https://code.google.com/archive/p/root-finding/) for archive purposes.

**This code should be useful to perform root finding in limited hardware such micro-controllers.**

Available algorithms:

- [Newton Rhapson](root-finding/src/RootFindingNewtonRhapson.c)
- [Cordas](root-finding/src/RootFindingCordas.c)
- [Bissecao](root-finding/src/RootFindingBissecao.c)
- [Pegaso](root-finding/src/RootFindingPegaso.c)
795 changes: 795 additions & 0 deletions console-utilities/.cproject

Large diffs are not rendered by default.

82 changes: 82 additions & 0 deletions console-utilities/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>console-utilities</name>
<comment></comment>
<projects>
<project>string-utilities</project>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
<dictionary>
<key>?name?</key>
<value></value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.append_environment</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.autoBuildTarget</key>
<value>all</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.buildArguments</key>
<value></value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.buildCommand</key>
<value>make</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.buildLocation</key>
<value>${workspace_loc:/console-utilities/Debug}</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.cleanBuildTarget</key>
<value>clean</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.contents</key>
<value>org.eclipse.cdt.make.core.activeConfigSettings</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.enableAutoBuild</key>
<value>false</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.enableCleanBuild</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.enableFullBuild</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.fullBuildTarget</key>
<value>all</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.stopOnError</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key>
<value>true</value>
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.core.cnature</nature>
</natures>
</projectDescription>
Loading

0 comments on commit 1ebfdc3

Please sign in to comment.