Impose a numerical limit on the value of a sum of two vectors

1 回表示 (過去 30 日間)
Richard Wood
Richard Wood 2021 年 7 月 16 日
コメント済み: Stephen23 2021 年 7 月 16 日
Hello everyone
I want to sum two arrays, let's say a1 and a2. However, I seek that the sum, element by element, of these vectors does not exceed the maximum value of the array a1. Those elements of the sum vector that exceed this limit, I would like them to show the maximum of a1 as a numerical value.
How could I do this?

採用された回答

Alan Stevens
Alan Stevens 2021 年 7 月 16 日
One possibility is
min(max(a1),a1+a2)
  1 件のコメント
Stephen23
Stephen23 2021 年 7 月 16 日
+1 this is the efficient MATLAB approach. However it needs to avoid the issues caused by the default behavior of max:
min(max(a1(:)),a1+a2)

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

その他の回答 (2 件)

KSSV
KSSV 2021 年 7 月 16 日
a12 = a1+a2 ;
[val,idx] = max(a1)
a12(a12>val) = []

Jayant Gangwar
Jayant Gangwar 2021 年 7 月 16 日
It is my understanding that you would like to sum two arrays element by element and replace all the elements in the resulting array that are greater than the max element in first array by that max element. Given below is an example where I have done the same with two dummy arrays.
a=1:10;
b=1:10;
ans=a+b;
m=max(a);
ans(ans>m)=m

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by