FNCFunctions vs FundamentalsNumericalComputation: which Julia package to install #26
|
Hi, I came across this book (https://fncbook.com) recently and was trying to follow the Julia track. The "Julia setup" section of the appendix and the introduction suggest different packages for Julia (locations referenced below). Can someone clarify what needs to be done? Line 28 in 1e9fd6d Line 20 in 1e9fd6d P.S. From looking at the respective repositories, it seems to me that FNCFucntions is the one that goes with this version of the book. I'll move forward with that one and see where that gets me. |
Replies: 1 comment 1 reply
|
That's my bad. You should use FNCFunctions with the latest online version of the book. But you will also need to one-time install other packages to run some of the examples (anything imported by The FundamentalsNumericalComputation is older and tries to load all those packages in one shot every time, which slows things down a lot. There is infrastructure in recent Julia versions to make all this less painful, but I have not attempted to use that yet. |
That's my bad. You should use FNCFunctions with the latest online version of the book. But you will also need to one-time install other packages to run some of the examples (anything imported by
using).The FundamentalsNumericalComputation is older and tries to load all those packages in one shot every time, which slows things down a lot.
There is infrastructure in recent Julia versions to make all this less painful, but I have not attempted to use that yet.