Not enough input arguments

2 ビュー (過去 30 日間)
Waseem Abbas
Waseem Abbas 2022 年 5 月 24 日
コメント済み: Waseem Abbas 2022 年 5 月 25 日
mtrain1 = size(Xtrain1,1);
nw = size(Xtrain1,2);
when i run the above code , i face the following error:
Not enough input arguments.
Error in movie_kernel (line 28)
mtrain1 = size(Xtrain1,1);
What is this error, and how to solve this error, thanks
  3 件のコメント
jessupj
jessupj 2022 年 5 月 24 日
huh? why is size executing movie_kernel? I don't see that happening in those lines of code unless Xtrain1 executes a script or something like that
Waseem Abbas
Waseem Abbas 2022 年 5 月 25 日
@Allen data from the data set that i am using to train the model

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2022 年 5 月 24 日
You have a function named movie_kernel that expects to be passed one or more parameters, including a parameter it refers to as Xtrain1. However when you invoked the function you did so without providing enough input parameters.
A common cause for these kinds of problems is trying to execute a function by pressing the green Run button. When you press the Run button, the current script or function is executed without any input parameters.

その他の回答 (0 件)

タグ

製品


リリース

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by