![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/14221066_1543139481946_DEF.jpg)
Mary Abdu
Followers: 0 Following: 0
Statistiques
RANG
238 507
of 297 016
RÉPUTATION
0
CONTRIBUTIONS
6 Questions
4 Réponses
ACCEPTATION DE VOS RÉPONSES
0.0%
VOTES REÇUS
0
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 725
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
in using partisl least square method to reduce the dimention of the input matrix how to know the inputs that matlab has selected as the important variables, how to select the number of components?
y=outputs; x=inputs; [xl,yl,xs,ys,beta,pctvar]=plsregress(x,y,numberofcomponents)
environ 6 ans il y a | 1 réponse | 0
0
réponsewhat is wrong with the following code, i get the following massege :Subscripted assignment dimension mismatch. Error in Untitled3 (line 14) y2(i)=purelin(y22);
w1=Nx52, b1=Nx1, b2=2x1, w2=2x3 thank you mister madhan, it is look like working with my code (below is the full code) but now ...
environ 6 ans il y a | 0
what is wrong with the following code, i get the following massege :Subscripted assignment dimension mismatch. Error in Untitled3 (line 14) y2(i)=purelin(y22);
w=w*1; load('inputs.mat'); load('outputs.mat'); in=inputs; % loads inputs into variable 'in' t=outputs; ...
environ 6 ans il y a | 0
what is wrong with the following code, i get the following massege :Subscripted assignment dimension mismatch. Error in Untitled3 (line 14) y2(i)=purelin(y22);
thank you; i have already corrected by the foloowing: L=length(a) for i=1:L x=b(:,i); y1=w1*x+b1; y1=tansig(y1)...
environ 6 ans il y a | 0
Question
what is wrong with the following code, i get the following massege :Subscripted assignment dimension mismatch. Error in Untitled3 (line 14) y2(i)=purelin(y22);
clc; clear all; a=[1 2 3; 20 21 22] b=[1 2 3; 4 5 6; 7 8 9] w1=[4 1 5;2 5 0;6 7 10] w2=[10 11 12; 30 1 0] b1=[0.4; 0.2; 0....
environ 6 ans il y a | 6 réponses | 0
6
réponsesQuestion
how i can find neural network second output in term of weight and bias, i am using the below code to find the first output
y1=w1*x+b1; y1=tansig(y1); y22=w2*y1+b2; y2=purelin(y22);
environ 6 ans il y a | 1 réponse | 0
0
réponseQuestion
how to rewrite this for feedforward neural network for with 52 inputs and 2 output that predict emission rate not for digits, where i get an error of In an assignment A(:) = B, the number of elements in A and B must be the same. Error in line36
sweep=[3,5:5:50]; %parameter values to test scores=zeros(length(sweep),1); %pre-allcation models=cell(length(sweep),1); %pre-a...
environ 6 ans il y a | 2 réponses | 0
2
réponsesthe following code is to get neural network output in term of weights and biases for one single output how i can rewirte the code for neural network with 2 outputs
i tried with the below code but stil not work could anyone help me please: [r,c]=size(outputs); for i=1:r for j=1:c ...
environ 6 ans il y a | 0
Question
the following code is to get neural network output in term of weights and biases for one single output how i can rewirte the code for neural network with 2 outputs
L=length(outputs); for i=1:L x=inputs(:,i); y1=w1*x+b1; y1=tansig(y1); y22=w2*y1+b2; y2(i)=purelin(y22...
environ 6 ans il y a | 1 réponse | 0
1
réponseQuestion
could any one help me with understanding this code please where w and b are matrices
N=3; w1=[w(1:N);w(N+1:2*N)]'; b1=w(2*N+1:3*N)'; w2=w(3*N:4*N+1); b2=w(end);
environ 6 ans il y a | 1 réponse | 0