Solve the problem of boiler_process and mapminmax running errors (normalized)

This blog post solves the following error:
"You can only call nargin/nargout from MATLAB function when using nargin. Error boiler_process (line 7) if (nargin <1), error('NNET:Arguments','Not enough arguments.') ; end error mapminmax (line 71) boiler_process"

  1. Find mapminmax.m in C:\ProgramFiles\MATLAB\R2017a\toolbox\nnet\nnet\nnprocess and
    Insert picture description here
    confirm that it is here. Let's proceed to the next step.

  2. Find "Set Path" in the matlab homepage, click to enter
    Insert picture description here

  3. Add the path "C:\ProgramFiles\MATLAB\R2017a\toolbox\nnet\nnet\nnprocess" and save it.
    Insert picture description here

  4. Re-run the program and found that the problem has been resolved.

  5. Matters needing attention
    This is the function that comes with matlab, the new version does not need to re-download the function, according to the above path can solve the problem.

    I hope the suggestions can help you. If you don’t understand, you can send me a private message. I will reply soon. If it’s useful, remember to click on the little red heart.

Guess you like

Origin blog.csdn.net/qq_37706433/article/details/113784548