photo

essrra


Last seen: 2 years ago Active since 2023

Followers: 0   Following: 0

Statistics

MATLAB Answers

5 Questions
2 Answers

RANK
13,631
of 300,553

REPUTATION
3

CONTRIBUTIONS
5 Questions
2 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
1

RANK
 of 21,024

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,635

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Answer
  • Explorer
  • First Review

View badges

Feeds

View by

Question


this two codes is connected to each other when i run the first code it gives me error says : Error using KNN_ Too few input arguments,what i shoud do
global A trn vald ; SearchAgents_no=10; % Number of search agents Max_iteration=100; % Maximum numbef of iterations % A=lo...

2 years ago | 0 answers | 0

0

answers

Question


this two code are connected to each other when i run the first code it gives me error says: Error using GWO Too many output arguments.
close all clear all clc global A trn vald ; T=100; N=30; lb=0;% ub=1; runs=30; threshold=2; fitfun=@AccSz; %fitness fu...

2 years ago | 1 answer | 0

1

answer

Question


it gives me error Unrecognized function or variable 'GWO'.
close all clear all clc global A trn vald ; T=100; N=30; lb=0;% ub=1; runs=30; threshold=2; fitfun=@AccSz; %fitness fu...

2 years ago | 1 answer | 0

1

answer

Question


when i run this code it give me error Not enough input arguments. Error in GWO (line 23) Alpha_pos=zeros(1,dim);
% Grey Wolf Optimizer function [Alpha_score,Alpha_pos,Convergence_curve]=GWO(SearchAgents_no,Max_iter,lb,ub,dim,fobj) % init...

2 years ago | 1 answer | 0

1

answer

Question


WOit gives me error says un recognized variable GWO
clc; clear; global A trn vald ; T=100; N=30; lb=0;% ub=1; runs=30; threshold=2; fitfun=@AccSz; %fitness function 0.99Er...

2 years ago | 1 answer | 0

1

answer

Answered
Out of memory. The likely cause is an infinite recursion within the program.
function [neighborIds, neighborDistances] = kNearestNeighbors(dataMatrix, queryMatrix, k) %----------------------------------...

2 years ago | 1

Answered
"Too few input arguments"? (GUI handles)
function [predicted_labels,nn_index,accuracy] = KNN_(k,data,labels,t_data,t_labels) %KNN_: classifying using k-nearest neighbor...

2 years ago | 0