Solving system of equations

Welcome to the Julia community! I can’t help with your particular issue, but it might be worth taking a look at this thread about posting questions here in discourse. In particular, you can get the code formatted, making it a bit easier to read. Compare

function foo()
println(“this looks like normal text”)
end

To:

function bar()
    println("oh, so much better!")
end
2 Likes