Concatenate signals ( sine wave and a line )

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 Comments

I assume you tried to vertically(horizontally) concatenate two row(col) vectors of different length.
Could you provide more details?
t = [0:0.1:2*pi]
a = sin(t);
X = [0.1,0.4];
Y = [0.1,0.1];
total=[a; X; Y];
plot(total)
i tried this code
Not sure what you want to plot. A sine wave with a line at its end?

Sign in to comment.

Answers (3)

total=[a X Y];
Here "a" is row data, so you must have row-wise (horizontally) concatenate
You are attempthing to vertically concatenate them.
Use commas (,) instead fo semicolons(;) and it will work. Commas horizontally concatenate and semicolons vertically concatenate.
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])

Categories

Asked:

on 1 Dec 2020

Commented:

on 1 Dec 2020

Community Treasure Hunt

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

Start Hunting!