How can i make priority in matlab?

i have many stations and i want to choose the highest load cost as first and so on
i have six stations with different loads

 采纳的回答

[maxload, maxidx] = max(TheLoads)
now maxload stores the value of the largest of TheLoads, and maxidx stores the index within TheLoads, so it tells you which load is largest.

3 个评论

thanks walter but in my case i have 6 stations and 365 days so i need to choose the largest every step , this means that sometimes in the first step the largest in station1 but inthe second in staion6 and so on , how can make it follow all steps and compare between stations and choose the largest ,
If TheLoads is a 6 x 365 array, then
[maxload, maxidx] = max(TheLoads);
will have maxload be the maximum per day and maxidx will be the index of the maximum for each day. If your array is 365 x 6 instead, then
[maxload, maxidx] = max(TheLoads, [], 2);
many thanks for your help Walter

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Simulink Coder 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by