essrra - MATLAB Central
photo

essrra


Last seen: 2年弱 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 03/23 to 03/25Use left and right arrows to move selectionFrom 03/23Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

5 質問
2 回答

ランク
14,471
of 297,695

評判
3

コントリビューション
5 質問
2 回答

回答採用率
0.0%

獲得投票数
1

ランク
 of 20,466

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,380

コントリビューション
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...

約2年 前 | 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...

約2年 前 | 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...

約2年 前 | 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...

約2年 前 | 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...

約2年 前 | 1 件の回答 | 0

1

回答

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

約2年 前 | 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...

約2年 前 | 0