submitWithConfiguration not working in matlab online R2020a.
Show older comments
function A = warmUpExercise()
%WARMUPEXERCISE Example function in octave
% A = WARMUPEXERCISE() is an example function that returns the 5x5 identity matrix
A = [];
% ============= 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);
% ===========================================
end
Error:
Error in submitWithConfiguration (line 4)
parts = parts(conf);
Error in submit (line 35)
submitWithConfiguration(conf);
Accepted Answer
More Answers (1)
Dhanya Sree
on 12 Apr 2020
0 votes
I m facing the same trouble. Could someone please tell me a solution to resolve this
2 Comments
sujattha m
on 12 Jun 2020
The problem might be in new version. i chaned the variable name. but still i am getting error at line no 94
for partArray = conf.partArrays
sujattha m
on 12 Jun 2020
Categories
Find more on Octave in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!