Problem 2305. Reverse Concatenation
Suggest methods to form a Matrix after deleting one of the input's elements. Input should be element's position and output should be the reduced matrix.
For example:
X = [1 2 4 2 3 1 2 2 4 5]
after giving input as t=3 output should be the new matrix which contains all the elements of X (same order) but the third element.
Hence output will be
[1 2 2 3 1 2 2 4 5]
Solution Stats
Problem Comments
-
3 Comments
This problem needs a test suite
Yes, Ujjwal: you must define well the test cases.
I added two simple tests.
Solution Comments
Show commentsProblem Recent Solvers79
Suggested Problems
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1230 Solvers
-
Find the sum of the elements in the "second" diagonal
1174 Solvers
-
Who has power to do everything in this world?
473 Solvers
-
Is this triangle right-angled?
6236 Solvers
-
Deleting an element in a matrix
480 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!