Clear Filters
Clear Filters

create a function to...

3 views (last 30 days)
Mike
Mike on 1 Nov 2013
Answered: Cedric on 1 Nov 2013
Create a function *.m file that accepts a 2-dimensional array as a function input and has two function outputs. This function will use a nested loop to create one column vector that contains the sum of all the positive values in each row and another column vector that contains sum of all the negative numbers of each row. These two column vectors should be returned (sent back) to the function call.
  1 Comment
Mike
Mike on 1 Nov 2013
Edited: Matt J on 1 Nov 2013
my attempt:
function [ positive, negative ] = Untitled2( x )
%UNTITLED2 Summary of this function goes here
% Detailed explanation goes here
positive=0;
negative=0;
for k=1:length(x)
for j=1:length(x)
if x(k,j)>0
positive=positive+x(k,j)
end
if x(k,j)<0
negative=negative+x(k,j)
end
end
end
positive=positive
negative-negative
end

Sign in to comment.

Accepted Answer

Cedric
Cedric on 1 Nov 2013
It's not bad actually. The lines
positive=positive
negative-negative
are useless, and you want to create vectors of sums, not scalars. So one mistake is that you don't index variables positive and negative with the row index. To make it more efficient, you could even prealloc these variables: change
positive=0;
negative=0;
for
positive = zeros(size(x, 1));
negative = zeros(size(x, 1));
Another mistake is that k and j should go from 1 to the number of rows and columns of x. You can obtain them using function SIZE.

More Answers (1)

Matt J
Matt J on 1 Nov 2013
Make "positive" and "negative" into vectors and index them appropriately, e.g.,
positive(k)=positive(k)+x(k,j)

Categories

Find more on Loops and Conditional Statements 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!