Anyone please do this on matlab

Create a function whose name should be your own name. This function would take 3 vectors of different sizesas input.The output of the function should be the same 3 vectors arrangedin ascending order according to their sizes. The function should also return another vector which is sum of all 3vectors.

댓글 수: 1

the cyclist
the cyclist 2021년 6월 26일
This certainly looks like a homework assignment. Post what you have tried, and we may help you along.
If you don't have any experience with MATLAB, try the MATLAB Onramp tutorial.

댓글을 달려면 로그인하십시오.

답변 (1개)

Soniya Jain
Soniya Jain 2021년 6월 26일

0 개 추천

x = 1:2;
y = 1:3;
z = 1:4;
% a1, a2, a3 are 3 vectors arranged in ascending order
% let's pass x,y and z in jumbled order
[a1, a2, a3, sum] = solve(y,z,x);
function [a1, a2, a3, sum] = solve(a,b,c)
[x1,s1]=size(a);
[x2,s2]=size(b);
[x3,s3]=size(c);
sum = 0;
if(s1 > s2 && s1 > s3)
a1 = a;
if(s2 > s3)
a2 = b;
a3 = c;
else
a2 = c;
a3 = b;
end
elseif(s2 > s3 && s2 > s1)
a1 = b;
if(s1 > s3)
a2 = a;
a3 = c;
else
a2 = c;
a3 = a;
end
else
a1 = c;
if(s1 > s2)
a2 = a;
a3 = b;
else
a2 = b;
a3 = a;
end
end
% now find sum of all the vector elements
for i = 1:s1
sum = sum + a(i);
end
for i = 1:s2
sum = sum + b(i);
end
for i = 1:s3
sum = sum + c(i);
end
end

댓글 수: 4

the cyclist
the cyclist 2021년 6월 26일
@Soniya Jain, I am disappointed that a member of the MATLAB staff would simply answer a homework question for a student.
Star Strider
Star Strider 2021년 6월 26일
@the cyclist — I completely agree!
Image Analyst
Image Analyst 2021년 6월 26일
Well it's not completely solved. @Mr A still has to rename the function from solve() to MrA(). And change the name of the badly-named sum variable to something that's not a built-in function, like theSum.
the cyclist
the cyclist 2021년 6월 26일
Maybe MrA's name is actually "solve".

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

태그

질문:

2021년 6월 26일

댓글:

2021년 6월 26일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by