Row vector and corresponding column vector for each row
Ältere Kommentare anzeigen
I want to create a single row vector with each element of the row array being a column vector and I want to access a certain element of any row number and the column which would be user-defined.
4 Kommentare
KL
am 5 Dez. 2017
... a single row vector with each element of the row array being a column vector...
What do you mean? A matrix? A row-vector like cell-array with column vectors?
...I want to access a certain element of any row number and the column...
Don't you want to create a row vector? row vector is supposed to have only one row!
Stephen23
am 5 Dez. 2017
"...I want to access a certain element of any row number and the column which would be user-defined"
It sounds like a matrix would satisfy those requirements.
kd p
am 5 Dez. 2017
kd p
am 5 Dez. 2017
Antworten (1)
Jos (10584)
am 5 Dez. 2017
Something like this?
% two cell arrays (being column vectors) of strings
c1 = {'hello', 'friend'}
c2 = {'my' ; 'name' ; 'is' ; 'joe'}
% create cell row vector holding these cell array of strings
r = {c1 c2}
3 Kommentare
kd p
am 5 Dez. 2017
kd p
am 5 Dez. 2017
Jos (10584)
am 5 Dez. 2017
Bearbeitet: Jos (10584)
am 5 Dez. 2017
Sorry, you've lost me. I suggest you read the Getting Started section of the manual and learn about cell arrays and structs. These might be what you are looking for.
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!