i get an error when creating newff please help me ..

W
weqnet_12 · Apr 26, 2021 · 2K views
Question
the excel file has the dataset. it has 24 columns. first 12 columns has the target value 1. the last 12 colums have the target value 0. i wanted to design a NN for classification into 1 or 0. the data was copied to dat file. i selected all the 198 rowsand 24 colums to input.dat . single rown with 24 colums as target.dat and i get the following error . please rectify.   Error:   Error using newff (line 107) Input ranges is not a two column matrix. Error in signature1 (line 17) net=newff(input_n,target_n,13);   close all ; clc; clf; clear all; load input.dat; load target.dat; input1=input(1:198,1:24); target1=target(1:198,1); [input_n,input_n_struct]=mapminmax(input1'); [target_n,target_n_struct]=mapminmax(target1'); net=newff(input_n,target_n,13); net.divideFcn='divideblock'; net.divideParam.trainRatio=80; net.divideParam.valRatio=10; net.divideParam.testRatio=10; net.trainFcn='trainlm'; [net tr Y E]=train(net,input_n,target_n); % Simulation disp('Simulation Output for the given input'); simoutput=sim(net,input_n); [input_n ; simoutput]; %Output Normalized Version disp('Normalized Simulation Output'); Norm_input=mapminmax('reverse',input_n,input_n_struct); Norm_simoutput=mapminmax('reverse',simoutput',target_n_struct); %[Norm_input Norm_simoutput]; [Norm_input]; [Norm_simoutput] [target Norm_simoutput] % Calculating Mean Square Error perfmse=mse(E); fprintf('Mean Square Error:%d \n',perfmse);
Expert Answer
Profile picture of Neeta Dsouza
Neeta Dsouza PhD Expert
Answered Aug 23, 2026
It looks like you are using an obsolete version of NEWFF where the first input is minmax(input_n) instead of input_n.
However, even the latest version of NEWFF is obsolete.
What version of MATLAB do you have? Type ver into the command line
The current versions of MLP are
 
 Regression/curve-fitting: FITNET(calls FEEDFORWARDNET) instead of NEWFIT(calls NEWFF)

 Classification/pattern-recognition: PATTERNNET(calls FEEDFORWARDNET)instead of NEWPR(calls FEEDFORWARDNET)
100% Run Guarantee 3-Hour Fast-Track Delivery

Need a Custom Version or Complete Simulation for This Problem?

Our 500+ PhD engineers build, debug, and optimize working MATLAB scripts and Simulink (.slx) models tailored to your exact assignment rubrics with zero plagiarism.

Tested on MATLAB R2024b / R2026a
Turnitin 0% Plagiarism Report
Free 7-Day Revisions Guarantee
Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!