come posso avere la dimensione di T come la dimensione di x
Info
This question is closed. Reopen it to edit or answer.
Show older comments
x = [.1 .2 .3 .7 ; .8 .9 .1 .2 ];% Funziona con questo array.
T (x> .5) = x;
T (x <= .5) = 1
Answers (1)
madhan ravi
on 16 Dec 2018
x = [.1 .2 .3 .7 ; .8 .9 .1 .2 ];% Funziona con questo array.
T=zeros(size(x));
T(x>.5) = x(x>.5);
T(x<=.5) = 1
2 Comments
mina massoud
on 16 Dec 2018
madhan ravi
on 17 Dec 2018
Anytime :) , if my answer worked make sure to accept the answer.
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!