0
MATLABでsubmit()コマンドを使用する際に問題があります。私は、ファイルを送信しようとしますエラーが、私はそれがこの場合は関連性があるとは思わないので、私は実際のファイルの内容を追加していないですMATLAB submitWithConfiguration
Warning: Name is nonexistent or not a directory: .\lib
> In path (line 109)
In addpath (line 88)
In submit (line 2)
Undefined function or variable 'submitWithConfiguration'.
ですが、私が間違っているなら、私に知らせてください。
ありがとうございます。
EDIT:
私のコードは次のとおりです。
function A = warmUpExercise()
%WARMUPEXERCISE Example function in octave
% A = WARMUPEXERCISE() is an example function that returns the 5x5 identity matrix
% ============= YOUR CODE HERE ==============
% Instructions: Return the 5x5 identity matrix
% In octave, we return values by defining which variables
% represent the return values (at the top of the file)
% and then set them accordingly.
A = eye(5);
このbtwは*警告*です。エラーではありません。あなたの問題を再現可能にする*は常に関連しています*。 [MCVE] –
を参照してください。エラーは送信しなかったことです。要点は、ファイルの内容を変更しても警告メッセージと送信失敗が変わらないことです。 – madhatter5