The function move_me is defined like this: function w = move_me(v,a). The first input argument v is a row-vector, while a is a scalar. The function moves every element of v that is equal to a to the end of the vector.
Show older comments
function w=move_me(v,a)
if
w_1=v(v>a);
w_2=v(v<a);
w=[w_1 w_1 a];
end
It does work for function when variable 'a' has some value but when 'a' is empty it doesn't work. Actually in the question it is also written that If 'a' is omitted, the function moves occurrences of zeros. could you please help me I am trying to figure out this problem but it has not been done. which function can be used to shift 'a' in vector 'v' to the end of vector 'v'. Thanks in advance
2 Comments
KSSV
on 19 May 2017
When a is empty obviously it will not work, because there is no number to split/ divide. What you expect actually?
Wasi von Deutschland
on 19 May 2017
Accepted Answer
More Answers (4)
Jorge Briceño
on 1 Feb 2018
Hi,
This answer might be helpful:
function w= move_me(v,a)
% The first input argument v is a row-vector, while a is a scalar.
% The function moves every element of v that is equal to "a" to the end of the vector.
% If a is omitted, the function moves occurrences of zeros.
% Use nargin or exist to evaluate the existence of the second argument.
if nargin<2
% If a is omitted, replace it by zero.
% Function horzcat concatenates the answer.
a=0;
w=horzcat(v(v~=a),v(v==a));
else
w=horzcat(v(v~=a),v(v==a));
end
end
The built-in function "horzcat" concatenates the column vectors. In case you are not using a row vector as an input, you just need to add something like this:
v=v(:)'
As Rik Wisselink mentioned, try to think and understand what you are being asked and how the code is working. In the end, you need to develop the logic as well as programming skills.
I hope it helps.
1 Comment
Javed Ahmad
on 13 Jan 2019
Thanks sir, your answer is correct
Vaibhav Sharma
on 8 Jun 2018
Edited: Vaibhav Sharma
on 8 Jun 2018
0 votes

Vaibhav Sharma
on 8 Jun 2018
0 votes
This is the answer
Lars Wolff
on 12 Jun 2018
Hi together!
It is me again....
I tried:
function [w] = move_me(v,a)
isscalar(a)
a
v(:) = v
w = [v(v~=a) v(v==a)]
if a ~= v
w = (a==v)
end
but i get the message:
Problem 1 (move_me):
Feedback: Your function performed correctly for argument(s) [1 2 3 4], 2
Feedback: Your program made an error for argument(s) [0 1 2 3]
Your solution is _not_ correct.
Thanks for your help and ideas in advance!
1 Comment
Walter Roberson
on 12 Jun 2018
Your code is testing whether a is a scalar, and it displays the result of that, but that makes no difference to the rest of the calculation.
The problem description in the original question does not say what should happen if the function is not passed any arguments, or is only called with one argument, or is called with a 2D array for the first argument, or is called with a non-scalar for the second argument.
The grading system is giving you the feedback that it passed in a single argument containing [0 1 2 3] with no second argument, and that your routine is not doing what the grading system expects in response. Your code would be failing with an error message when it tried to access the a that was not being passed in.
Categories
Find more on Scripts 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!