Write a Matlab script to create a row vector of 10 consecutive numbers
x = [1 2 3 4 5 6 7 8 9 10]
Solution Stats
Problem Comments
6 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers315
Suggested Problems
-
First non-zero element in each column
942 Solvers
-
Back to basics 11 - Max Integer
808 Solvers
-
1446 Solvers
-
Sum the elements in either diagonal of a square matrix
220 Solvers
-
Simple equation: Annual salary
4255 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Why this problem ? It's the problem n°2 in the Cody...
Yaz, you don't respect others players if you create EXACTLY the same problems.
I suggest that new players solve the Cody Challenge (Cody Challenge Master Badge) before be able to create new problems. That seems reasonable
Any comments ?
Exactly my point. I have no problem solving a really basic problem. But its really frustrating to solve same thing again and again
While I understand that experimenting with creating problems is half the fun of Cody this is a somewhat extreme example of a repetitive problem that seems unnecessary, so yes, I agree with Jean-Marie here that perhaps some form of user-based curation like that in Answers or minimum user-requirements for creating problems might help
(not to mention that this particular testsuite does not even test for anything at all)
%% Yaz Majeed, please fix your Test 1.
assert(isequal(diff(create_row),ones(1,9)))
Yaz, the use of the function diff in the assertion is incorrect. diff(X) calculates differences between adjacent elements of X and not between two vectors.