How can I break the two different ranges in the vector apart?

1 visualización (últimos 30 días)
A C
A C el 16 de Sept. de 2018
Respondida: Image Analyst el 16 de Sept. de 2018
How can I break the two different ranges in the vector apart?
a = [7:17:302 primes(300)];
b = [7:17:302; primes(300)];
OR
b = [7:17:302];
c = [primes(300)];
  2 comentarios
Walter Roberson
Walter Roberson el 16 de Sept. de 2018
What does it mean to break them apart?
The values 7 41 109 211 are in both ranges.
If you know the length of one of the two parts you can use indexing.
Image Analyst
Image Analyst el 16 de Sept. de 2018
It looks like you did break them apart. Isn't that what b and c are? If not, then what are they?

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 16 de Sept. de 2018
Do you perhaps mean this:
a = [7:17:302 primes(300)];
plot(a, 'b-', 'LineWidth', 2);
grid on;
index = find(diff(a) < 0);
b = a(1:index)
c = a(index+1:end)

Más respuestas (0)

Categorías

Más información sobre Historical Contests en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by