photo

essrra


Last seen: 3 years 前 自 2023 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

5 个提问
2 个回答

排名
14,488
of 300,980

声誉
3

贡献数
5 个提问
2 个回答

回答接受率
0.0%

收到投票数
1

排名
 of 21,128

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 172,167

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer
  • Explorer
  • First Review

查看徽章

Feeds

排序方式:

提问


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...

3 years 前 | 0 个回答 | 0

0

个回答

提问


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...

3 years 前 | 1 个回答 | 0

1

个回答

提问


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...

3 years 前 | 1 个回答 | 0

1

个回答

提问


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...

3 years 前 | 1 个回答 | 0

1

个回答

提问


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...

3 years 前 | 1 个回答 | 0

1

个回答

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

3 years 前 | 1

已回答
"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...

3 years 前 | 0