Author Archives: julia on Abel Soares Siqueira

Minicurso de Julia para Otimização

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2016-02-28-minicurso-de-julia-para-otimizacao/

Semana passada, nos dias 22 a 24 de Fevereiro aconteceu o VIII Simpósio de Análise Numérica e Otimização. Nesse evento, eu apresentei um minicurso de Julia com foco em Otimização não Linear. Entre 10 e 15 pessoas participaram no total, entre alunos de graduação, de pós-graduação, e professores. O objetivo principal era apresentar a linguagem e alguns detalhes importante para otimização não linear, o que foi obtido. Por outro lado, as aulas foram mais longas do que deveriam, e o conteúdo ficou muito esparso, pois tive que variar entre o básico e uma aplicação mais avançada.

Automated testing

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2016-02-21-automated-testing/

We’re gonna learn how to make a test for your Julia code that runs whenever you
publish it online. We’re gonna use

Alternatively, for a open source alternative, see GitLab,
which I don’t know enough yet.


Let’s make a litte code to solve a linear system, paying attention to the
problems it may arise, like incorrect dimensions, underdetermined and
overdetermined systems, singular matrices, etc.
And we’ll be using the factorizations, but not \.

Automated testing

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2016-02-21-automated-testing/

We’re gonna learn how to make a test for your Julia code that runs whenever you publish it online. We’re gonna use
GitHub to store the code; Travis CI to run your tests; Coveralls.io to verify which lines of code your test are missing. Alternatively, for a open source alternative, see GitLab, which I don’t know enough yet.
Let’s make a litte code to solve a linear system, paying attention to the problems it may arise, like incorrect dimensions, underdetermined and overdetermined systems, singular matrices, etc.