How Can You Modify Array Elements Conditionally Using a Subfunction in MATLAB?

  • Thread starter Thread starter gfd43tg
  • Start date Start date
  • Tags Tags
    Function
AI Thread Summary
The discussion revolves around creating a MATLAB function that modifies an array based on the sign of its elements, using a subfunction. The main function, `func`, should output an array where nonnegative entries are doubled, while negative entries are replaced with a specified number `n`. Participants express confusion about how to implement the subfunction correctly and the necessity of using it, given MATLAB's capabilities for array manipulation without explicit loops. There is debate about the placement of the multiplication by 2 and how to effectively check for negative values within the subfunction. Overall, the conversation highlights the challenges of adhering to exam requirements while leveraging MATLAB's features effectively.
gfd43tg
Gold Member
Messages
947
Reaction score
48

Homework Statement


The function func takes any real array A as input and outputs an array B of equal size, whose entries are equal to twice the corresponding entry of A for every nonnegative entry of A, and equal to a given number n, for every negative entry of A. The function func accepts a subfunction subf. Complete the code in func and subf, as necessary.

Code:
function B=func(A,n)
% Replace A by B such that each entry of B equals:
% twice the entry of A if that entry of A is non-negative
% or n if the entry of A is negative
B = 2*subf(_______________ % COMPLETE THE ARGUMENT LIST
function C = subf(__________________ % COMPLETE THE
% ARGUMENT LIST
% subfunction of func
C___________________________________ % COMPLETE THE LINE

Homework Equations


The Attempt at a Solution



Code:
function B=func(A,n)
% Replace A by B such that each entry of B equals:
% twice the entry of A if that entry of A is non-negative
% or n if the entry of A is negative
B = 2*subf(A)% COMPLETE THE ARGUMENT LIST
function C = subf(A<0,n) % COMPLETE THE
% ARGUMENT LIST
% subfunction of func
C = n % COMPLETE THE LINE

I am totally confused how to do this. This is so concise that I can't figure out how to make it distinguish whether its negative or non-negative with the few lines of code permitted. I am also having some confusion over how to properly use a subfunction. I would rather use if statements, but since this was an exam question I have to do it the way they ask.
 
Physics news on Phys.org
Apparently your programming language has some methods of array manipulation without looping over the events. It would be helpful to know which language this is and how you can work with arrays.

B = 2*subf(A)% COMPLETE THE ARGUMENT LIST
That way, subf does not know about n, and your B cannot depend on n any more. This cannot work.
B = 2*subf(A)% COMPLETE THE ARGUMENT LIST
function C = subf(A<0,n) % COMPLETE THE
Does your subf have one or two arguments? The lines are contradicting.

"function" mainly does the multiplication with 2. Ignore that for a moment (it's there already anyway).
At some point you have to check which elements of A are negative. "function" does not do it, so "subf" has to do it. What's left to do for "function"?
 
Sorry I forgot to mention it's Matlab
 
I agree the question seems far too cryptic without some more information about what you are supposed to do.

You could compute the required result with a single assignment statement, so it's not obvious (to me) what the subfunction is for.

"B = 2 * subf(..." seems to be putting the 2 in the wrong place, unless the answer is supposed to be something like "B = 2*subf(...) + another_expression".
 
mfb said:
At some point you have to check which elements of A are negative. "function" does not do it, so "subf" has to do it. What's left to do for "function"?

Well, in Matlab the expression "A < 0" gives you an array populated with 1s for the negative terms in A and 0's otherwise (the OP has used that in the attempt at a solution) so it's hardly a reason for writing a subfunction. :confused:
 
AlephZero said:
Well, in Matlab the expression "A < 0" gives you an array populated with 1s for the negative terms in A and 0's otherwise (the OP has used that in the attempt at a solution) so it's hardly a reason for writing a subfunction. :confused:
Yeah, but for some reason we have to use one.

The 2 is at an odd place, but we can divide n by 2 to fix that.

It is a weird question, but I think there are solutions.
 
Sure there are plenty of solutions, but from the OP's other threads these examples seem to be computer-graded, so you probably have to guess the "right" solution is to get marks.

Maybe there is some more information about the question that the OP hasn't shown us.
 
This is a problem from a previous exam. The exam is done by hand, I'll send a picture
ImageUploadedByPhysics Forums1407111097.514119.jpg


Here is an exam question from a different year. It's clear that the instructor likes sub function problems on the exam

ImageUploadedByPhysics Forums1407111166.817324.jpg
 
Back
Top