How we can do the matrix and vector in vector form?

clc;
clear all ;
close all;
format long g;
%% developing the function for the reverse in the vector concate and reverse it
A = [1;2;3]
B = [4 5 6;8 9 11]
[numRows,numCols] = size(B)
%% new vector will be vector form
C = vertcat(A,[B])

3 Kommentare

It's not clear what the expected output is.
Vims
Vims am 13 Dez. 2023
I need answer in the vector form as it shown in image attached.
Vims
Vims am 13 Dez. 2023

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

madhan ravi
madhan ravi am 13 Dez. 2023
[A, B.'] %?

2 Kommentare

Wanted = [A; reshape(B.', [], 1)
Vims
Vims am 13 Dez. 2023
I want function which also do the reverse. As the same format B was earlier. This is the another function. I think we have to use
[numRows,numCols] = size(B)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

madhan ravi
madhan ravi am 13 Dez. 2023
B = B.';
Wanted = [A; B(:)]

1 Kommentar

Vims
Vims am 13 Dez. 2023
correct but in reverse as same format or size. This is main part.
[numRows,numCols] = size(B)

Melden Sie sich an, um zu kommentieren.

I've demonstrated 2 methods here using reshape and colon, : . Refer to the documentation pages linked for more info.
Note that using semi-colon to concatenate is equivalent to vertcat.
A = [1;2;3];
B = [4 5 6;8 9 11];
%Method 1
C1 = [A; reshape(B.',[],1)]
C1 = 9×1
1 2 3 4 5 6 8 9 11
%Method 2
B = B.';
C2 = [A; B(:)]
C2 = 9×1
1 2 3 4 5 6 8 9 11

3 Kommentare

Vims
Vims am 13 Dez. 2023
I need reverse function too as it should be go same size and format. This is biggest issue for any size and shape of matrix.
Vims
Vims am 13 Dez. 2023
I think we have to use something like
[numRows,numCols] = size(B)
Dyuman Joshi
Dyuman Joshi am 13 Dez. 2023
Bearbeitet: Dyuman Joshi am 13 Dez. 2023
That's a good start.
Now, use indexing to split the data, and reverse the steps of method 1.

Melden Sie sich an, um zu kommentieren.

Kategorien

Produkte

Version

R2023a

Gefragt:

am 13 Dez. 2023

Bearbeitet:

am 13 Dez. 2023

Community Treasure Hunt

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

Start Hunting!

Translated by