New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve the math page with ODE's integrators #2353 #2365
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please take a look at the comments.
doc/Language/math.pod6
Outdated
|
|
||
| =SUBTITLE Different mathematical paradigms and how they are implemented in this language | ||
|
|
||
| =head1 Sets | ||
|
|
||
| Perl 6 includes the L<Set> data type, as well as support for | ||
| Perl 6 includes the L<Set> data type, as well as support for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is a whitespace, please fix it. Perl is always separated by a no-break space from 6 (same as 5), so that it's no separated by line breaks and so on. Can you please fix that?
| a nice goal while learning a new coding language. | ||
|
|
||
| =head2 Requeriments | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
→ Requirements
doc/Language/math.pod6
Outdated
|
|
||
| At this point our model is set. We need to run the simulation and render | ||
| a cool plot about our results: | ||
| =begin code :skip-test<Snippet for explanantion purposes> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would say this snippet compiles, no need to skip. If the examples are correct Perl 6 sentences, you can leave them like that.
The problem
There are some cool modules related to numerical integration that could get some attention from applied math students to this language. These modules offers us a nice approach on how to do some interesting maths with perl 6.
Solution provided
Adding information and examples about how to work with perl6 and these modules in the math with perl 6 page.