Sie sind auf Seite 1von 1

function [ y] = tarea( x )

y= (x>4 & x<8).*x;


function [y,y2 ] = tarea( x )
y=sum(x~=1)
y2=sum(x==1)
end

end
function [ y,y1] = tarea( x )
y= (x>4 & x<8).*x;
y1=(x~=y).*x;

Das könnte Ihnen auch gefallen