Concatenate signals ( sine wave and a line )

5 visualizaciones (últimos 30 días)
Bianca Ivan
Bianca Ivan el 1 de Dic. de 2020
Comentada: Bianca Ivan el 1 de Dic. de 2020
How can I concatenate a sine wave and a line? I tried something and the error was : Dimensions of matrices being concatenated are not consistent.
  4 comentarios
Timo Dietz
Timo Dietz el 1 de Dic. de 2020
Not sure what you want to plot. A sine wave with a line at its end?
Bianca Ivan
Bianca Ivan el 1 de Dic. de 2020
yes

Iniciar sesión para comentar.

Respuestas (3)

KALYAN ACHARJYA
KALYAN ACHARJYA el 1 de Dic. de 2020
Editada: KALYAN ACHARJYA el 1 de Dic. de 2020
total=[a X Y];
Here "a" is row data, so you must have row-wise (horizontally) concatenate

Star Strider
Star Strider el 1 de Dic. de 2020
You are attempthing to vertically concatenate them.
Use commas (,) instead fo semicolons(;) and it will work. Commas horizontally concatenate and semicolons vertically concatenate.

Timo Dietz
Timo Dietz el 1 de Dic. de 2020
I guess you want to add a X/Y line after the sine wave, right?
In this case you have to concatenate X + t and Y + a in order to have a new total X and total Y vector.
Looks weird but is this what you wanted to have: plot([t X], [a Y])
  1 comentario
Bianca Ivan
Bianca Ivan el 1 de Dic. de 2020
Thank you! I have to change the vectors values

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices 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