How can I write a program on Extreme Learning ANFIS? What are the steps involved in writing the program? (There is no toolbox in MATLAB on ELANFIS.)
this link may be useful: http://www.mathworks.com/help/fuzzy/anfis.html
this code may be help you:
x=[-10:.5:10]'; y=-2*x-x.*x;
% Plot of parabola
figure; plot(x,y)
grid
xlabel('x');ylabel('output');title('Nonlinear characteristics')
% Store data in appropriate form for genfis1 and anfis and plot it
data=[x y];
trndata=data(1:2:size(x),:);
chkdata=data(2:2:size(x),:);
% Plot of training and checking data generated from parabolic equation
figure; plot(trndata(:,1),trndata(:,2),'o',chkdata(:,1),chkdata(:,2),'x')
xlabel('x');ylabel('output');title('Measurement data'); grid
%Initialize the fuzzy system with command genfis1. Use 5 bellshaped membership functions.
nu=4; mftype='gbellmf'; fismat=genfis1(trndata, nu, mftype);
%The initial membership functions produced by genfis1 are plotted
figure; plotmf(fismat,'input',1)
xlabel('x');ylabel('output');title('Initial membership functions');
% Apply anfis-command to find the best FIS system - max number of iterations = 100
numep=100;
[parab, trnerr,ss,parabcheck,chkerr]=anfis(trndata,fismat,numep,[],chkdata);
%Evaluate the output of FIS system using input x
anfi=evalfis(x,parab);
% Plot of trained fuzzy system using trained data
figure; plot(trndata(:,1),trndata(:,2),'o',chkdata(:,1),chkdata(:,2),'x',x,anfi,'-')
xlabel('x');ylabel('output');title('Goodness of fit')
Can we measure the bulk composition of biomolecules present within an algal sample directly by placing its powdered form on a FT-IR spectroscopy stage? Or does it require a particular kind of...
30 January 2021 2,303 4 View
I want to plot the distribution curve of dipole moment as a function of angles between dipole vector and solid surface in the presence of external electric field. My system is consisting a...
17 January 2021 1,508 4 View
I need to dissolve 1.5gm of PVDF tablets (from Sigma ALdrich) in 25gm of n-n DiMethyl Acetamide (DMAc) solvent. I have stirred the solution for 2 hours using magnetic stirrer and it did not seem...
02 December 2020 1,777 3 View
I have a PEM cell dataset, and I want to plot the degradation curve or polarization curve using machine learning algorithms. How can I approach in this regard. I have to design an algorithm to do...
18 October 2020 7,909 2 View
07 October 2020 8,119 6 View
A particular gene (gene A) is reported to be downregulated in cancer cells as compared to the normal cells. How can you prove this with the help of PCR?
27 September 2020 5,292 4 View
Free toxicity prediction software based on genetic algorithm and deep learning of some training dataset #toxicity #Freesoftware #insilico #Deeplearning
30 August 2020 7,950 4 View
Currently I am using dpm particle tracking in Fluent to trace some particle .After the completion of the simulation, how can I obtain the concentration versus time curve at the outlet?
28 August 2020 9,962 3 View
I am looking for a new mixture template which is not in the data base of Ansys Fluent species transport model. How could I add new template?
25 August 2020 6,340 2 View
I am trying to compute the median duration of postpartum insusceptibility for one of my objectives. However, my values are much lower than the ones in the published report. Can you please help me...
10 May 2020 1,032 7 View
Dear Researchers I am trying to perform a PIL simulation using STM32F4 Discovery board and comunication serial USB TO TTL. During simulation I receive the following timeout error: An error...
01 March 2021 2,327 1 View
Which is suitable for use with Python? MySQL or SQL Server? What is your suggestion?
01 March 2021 3,422 3 View
The following code (see 1st 2 images attached) is used to produce PID controller values that are designed to control the system (G). The code finds the PID controller values (noted as k) by using...
28 February 2021 6,560 14 View
I have input and output data set for "ANFIS modeling in MATLAB", and I am getting some negative predicted values of output in testing. However, the predicted values of output in training are...
28 February 2021 3,459 3 View
In R-studio, there are many commands of Gumbel package. Arguments are also different. I`m asking about the alpha parameter of the Copula which must be greater than 1. If this is the one used to...
25 February 2021 5,229 3 View
I am required to learn about Flyback converters and I got stuck not knowing to full design of the power supply flyback converter Based USB Charger Model using Simulink, especially the design model...
25 February 2021 5,435 2 View
I do need the Matlab code of Fractal Discrete Cosine Transform (FDCT). Can anyone who has already implement this code, help me with the implementation of this transform?
24 February 2021 5,602 2 View
Hi Hope you are well. Can you please share your code for D2D implementation in Matlab. I want to implement D2D in Matlab based Vienna simulator and struggling to deploy D2D. Thanks
24 February 2021 9,378 3 View
Dear colleagues If anyone has a model of multi-effect distillation in EES or MATLAB software, please send it to me.
24 February 2021 7,282 1 View
I understand there are a lot of software programs that can simulate DED by going through specific modeling, simulation, and commands. For me, that was time consuming and results were not accurate....
24 February 2021 4,428 3 View