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
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Piecewise function. Dont know x
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos



3 comentarios
Walter Roberson
el 7 de Nov. de 2019
Duplicate question. You should merge it with your earlier questions on the same topic.
Respuestas (1)
Walter Roberson
el 7 de Nov. de 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 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!