I am getting following warning after launching octave.
i used installation instruction from here.
What could be the issue? Are these major warnings?
I am using windows.
warning: gmsh does not seem to be present some functionalities will be disabled
warning: dx does not seem to be present some functionalities will be disabled
warning: function C:\Octave\Octave3.6.0_gcc4.6.2\share\octave\packages\statistics-
1.1.0\fstat.m shadows a core library function
That’s because you have installed packages that you probably do not need (otherwise you would already noticed more than just the warning message)
You have the msh package installed and loaded. This package uses gmsh hence the warning. If you don’t use this package remove it
pkg uninstall mshor turn off its automatic loading at startup withpkg rebuild -noauto mshI don’t know exactly which package uses dx but I’m guessing the problem is same as the msh. Run
pkg unload alland then try to load them one by one until you find the warning. Fix as in the case of msh package.The
fstat()function from the statistics package is shadowing the same function with same name from Octave core. The one in core is already deprecated so don’t worry about this warning. It will go away after Octave 3.8 is released.