The first two are the question being asked. Thats the work that I have done so far, but I am confused as to what I should do becuase there is no x value given.
Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Piecewise function. Dont know x
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti



3 Commenti
Walter Roberson
il 7 Nov 2019
Duplicate question. You should merge it with your earlier questions on the same topic.
Risposte (1)
Walter Roberson
il 7 Nov 2019
Establish a vector of definite x values. Use logical indexing
X = something definite
Y = nan(size(x));
Mask = x > something & x < something else
Y(Mask) = some vectorized expression in X(Mask)
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!