Using table in MATLAB 2012

5 views (last 30 days)
Sam Lee
Sam Lee on 6 Apr 2016
Edited: Walter Roberson on 6 Apr 2016
I have five different vectors of the same size, but different data types. I want to put them in the form of a table. I tried using table() but it did not work on MATLAB 2012. How can I do that?
  1 Comment
Walter Roberson
Walter Roberson on 6 Apr 2016
Edited: Walter Roberson on 6 Apr 2016
Is this table for the purposes of display to the command window, or is it for processing some how?

Sign in to comment.

Answers (1)

jgg
jgg on 6 Apr 2016
Edited: jgg on 6 Apr 2016
Matlab 2012 doesn't support the table function; it was implemented in R2013b.
If you want to use that function, you will need to upgrade your version of Matlab.
You could try using a struct instead, but that won't have the same associated structure or functions.
  2 Comments
Sam Lee
Sam Lee on 6 Apr 2016
The problem is that it is an assignment and my lecturer said she only had MATLAB 2012.
jgg
jgg on 6 Apr 2016
Edited: jgg on 6 Apr 2016
Then you need to choose another data structure to do what you want to do here. As I suggested, you can try using a struct or you could use a cell instead. You'll have to try them out to see if they suit what you were trying to use table for.
You should accept this answer since it addresses your question; if you have a follow up about how to implement something like a table using another data structure, a follow-up question would be a good idea to post. However, you should make it clear what you are trying to do with your table in that question, since you might not need to duplicate all the functionality.
Alternatively, if your lecturer is with an educational institution with the appropriate license, she can just download new versions of the software for free. The academic license is perpetual, so she can use any version of Matlab.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!