Azzera filtri
Azzera filtri

How to select one of the array and change the array data selected with another value ?

1 visualizzazione (ultimi 30 giorni)
example :
datasample [83 84 82 81 82 86 81 85 87 *88*];
if datasample > 87
datasample = mean(datasample);
end
I want change the biggest value in datasample that is 88 with mean ( 83)
how to code like that ?

Risposta accettata

David Fletcher
David Fletcher il 19 Mar 2018
Modificato: David Fletcher il 19 Mar 2018
datasample=[83 84 82 81 82 86 81 85 87 88];
datasample(datasample==88) = mean(datasample);
or more generally
datasample(datasample==max(datasample)) = mean(datasample)

Più risposte (2)

Birdman
Birdman il 19 Mar 2018
Modificato: Birdman il 19 Mar 2018
[~,idx]=max(datasample);
datasample(idx)=mean(datasample)

Muhammad Hafiz
Muhammad Hafiz il 19 Mar 2018
Thank you for answer my question, both of you answer the correctly :)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by