Info

此问题已关闭。 请重新打开它进行编辑或回答。

Matrix manipulation problem under MATLAB and swapping values

1 次查看(过去 30 天)
Hi, I have a starting matrix sw =
0.0890 0.5520 0.4880
0.3980 0.3390 0.3860
0.2030 0.2870 0.2950
and I have two classes in this matrix I made a growing sort of the first class and I put them in L1 and descending sort of the second class and I put them in L2 %%I replace the values of the second class with 0's
L1=
0
0
0.287
0.295
0.339
0.386
0.398
0.488
0.552)
and
L2 =
0.203
0.089
0
0
0
0
0
0
0
if L1(1)<L2(1) %%(L1 (1): This is the first element of the L1 list)
so I swap the values in the starting matrix

回答(1 个)

madhan ravi
madhan ravi 2018-11-8
编辑:madhan ravi 2018-11-8
sw = [0.0890 0.5520 0.4880
0.3980 0.3390 0.3860
0.2030 0.2870 0.2950]
L1= [0 0 0.287 0.295 0.339 0.386 0.398 0.488 0.552]
L2 = [0.203 0.089 0 0 0 0 0 0 0]
L1([1 2]) = L1([2 1]) %example of swapping elements
  6 个评论
dakhli mohamed
dakhli mohamed 2018-11-8
I make the comparison only with great value and in an iterative way I am looking for the second small value of class 1 and I compare it with the 2nd big value of class 2 And so on

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by