Am I doing something wrong in cody submission?

2 views (last 30 days)
I have solved couple of question on cody and cross checked my prog on matlab which showing exactly the same output which the question in cody needs. But everytime, its showing error in submission. I have attached the sample submission problem.

Accepted Answer

Stephen23
Stephen23 on 5 Oct 2018
Edited: Stephen23 on 5 Oct 2018
Your function returns y, which is just the index from sort and has nothing to do with the first column of x.
The code x([y],1) is not allocated to anything, so it will be discarded.
Note that the square brackets around y are totally superfluous:
  3 Comments
Stephen23
Stephen23 on 5 Oct 2018
Edited: Stephen23 on 5 Oct 2018
Remove the conjugate transpose and the superfluous square brackets.
ANKUR KUMAR
ANKUR KUMAR on 5 Oct 2018
Thank you. Still doing silly mistakes.. at learning stage.

Sign in to comment.

More Answers (0)

Tags

Products

Community Treasure Hunt

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

Start Hunting!