Turn imported column data into matrices

11 views (last 30 days)
Dylan Irons
Dylan Irons on 10 Mar 2018
Answered: Jan on 12 Mar 2018
I am very new to Matlab. I have imported a file called "q3_data.mat". How do I turn this into matrices? I need the first row to be my vector of outcome variables and the remaining three rows into my independent variables. I would like to turn each one into vectors as two of them are dummy variables. How do I do this?

Answers (1)

Jan
Jan on 12 Mar 2018
Data = load('q3_data.mat');
Outcome = Data.X(1, :);
Variables = Data.X(2:end, :);
Here I guess, that the data are stored in the matrix X. But this depends on the contents of the file, which I do not know.
What does "turn each one into vectors as two of them are dummy variables" mean? What is "each one" and why does "turning into vectors" help to cope with "dummy variables"?

Categories

Find more on Cell Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!