find the sum by function

8 ビュー (過去 30 日間)
Eyad Ramadan
Eyad Ramadan 2020 年 7 月 29 日
コメント済み: Johannes Hougaard 2020 年 8 月 12 日
find the sum by function
  1 件のコメント
Sriram Tadavarty
Sriram Tadavarty 2020 年 7 月 29 日
What is looked for here? Whats the output that is expected from the sample vector? Can you show the code that you tried and where you struck?

サインインしてコメントする。

回答 (2 件)

Cristian Garcia Milan
Cristian Garcia Milan 2020 年 7 月 29 日
I think that your problem is the function definition. Actually you are using total as input and v as output and I think that your intention is the opposite. The function should be:
function [total]=grade_eyad(v)
min(v);
mean(v);
v(min(v))=mean(v);
total=sum(v)
end
When you have these code saved, you can use:
v=[12 9 6 10 13];
total=grade_eyad(v)
  1 件のコメント
Eyad Ramadan
Eyad Ramadan 2020 年 7 月 29 日
編集済み: Eyad Ramadan 2020 年 7 月 29 日
how i can replace the minimum grade by the average of grades , then calculate the sum of the grades ?

サインインしてコメントする。


Johannes Hougaard
Johannes Hougaard 2020 年 7 月 29 日
function total = grade_eyad(v)
[~,idx] = min(v); %finding the position of the minimum value (3 in the given example)
v(idx) = mean(v); %replacing the value (Christians code will replace the 6th element (13)
total = sum(v);
end
or you could index in another way (will be better if there are more 6'es to be replaced)
function total = grade_eyad(v)
v(v == min(v)) = mean(v); % find all instances where v equals min(v) by the == operator and replace by mean(v)
total = sum(v);
end
  2 件のコメント
Eyad Ramadan
Eyad Ramadan 2020 年 7 月 30 日
編集済み: Eyad Ramadan 2020 年 7 月 30 日
when i use this work
function total = grade_eyad(v)
v=[12 9 6 10 13];
v(v == min(v)) = mean(v);
total = sum(v);
end
i do run , the result
>> grade_eyad
ans =
54
but i need total apper , not ans
this
>> grade_eyad
total =
54
how i can do this?
Johannes Hougaard
Johannes Hougaard 2020 年 8 月 12 日
save the function as grade_eyad.m
Then you'll be able to call it from your workspace with an output with any name you like and with alterations to v (or use another variable name if desired).
v = [12 9 6 10 13];
total = grade_eyad(v)
w = [12 8 5 8 8 6 8 10 13 10 11];
total_w = grade_eyad(v)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by