Why/when should I prefer MATLAB over Octave?

前端 未结 11 1466
面向向阳花
面向向阳花 2020-12-23 18:28

In our shoestring operation we need to prototype algorithms in some higher-level language before committing to a C implementation on embedded hardware.

So far we hav

11条回答
  •  抹茶落季
    2020-12-23 19:03

    I have successfully ported some linear regression and quadratic programming applications to Octave.

    The linear regression (backslash operator) worked without any adjustment. In case of quadratic programming I had to switch from fmincon() to sqp(), giving similar results.

    Still, the toolboxes and GUI in Octave are, indeed, less mature (I spent so much time on basic stuff), although it has been rapidly making progress over the past two years.

提交回复
热议问题