In Octave there is no function to solve general BVP problems. The following is MATLAB code that won't run in Octave (and therefore it will not run when you press the Evaluate button below). MATLAB has two functions that can be used to solve BVP: bvp4c and bvp5c. The number in the name refers to the order of the method. The usage is almost identical to the one we saw in Python, with the exception that the "time array" and the initial guess solution must be passed to a bvpinit function and the output of this call must be passed to the bvp function as its third input, as shown in the code below.