Calculate argmin for the function in matlab
71 ビュー (過去 30 日間)
古いコメントを表示
I want to find the value of the following using matlab:
where . S is the set of the numbers as given. .
0 件のコメント
採用された回答
John D'Errico
2022 年 1 月 5 日
編集済み: John D'Errico
2022 年 1 月 5 日
What have you tried? Why not? And why did you feel you needed a picture of the vector S? That just makes us type it in. Not gonna happen. Just because you want fancy formatting makes it more difficult for you to get help?
S = sort(randi(100,[1,10]))
Next, learn to use VECTORS. Don't number your variables. Silly, becuase we know you have been using MATLAB for a while.
It looks like you want to find the closest elements in S to each of the members of a. Then form the sum.
a = [10:20:100]
[~,minind] = min((a' - S).^2,[],2);
V = S(minind)
sum(V)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!