come posso avere la dimensione di T come la dimensione di x

x = [.1 .2 .3 .7 ; .8 .9 .1 .2 ];% Funziona con questo array.
T (x> .5) = x;
T (x <= .5) = 1

Answers (1)

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

grazie mille adesso mi ha funzionato
Anytime :) , if my answer worked make sure to accept the answer.

This question is closed.

Products

Release

R2018b

Tags

Asked:

on 16 Dec 2018

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!