Using table in MATLAB 2012
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Walter Roberson
el 6 de Abr. de 2016
Editada: Walter Roberson
el 6 de Abr. de 2016
Is this table for the purposes of display to the command window, or is it for processing some how?
Respuestas (1)
jgg
el 6 de Abr. de 2016
Editada: jgg
el 6 de Abr. de 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 comentarios
jgg
el 6 de Abr. de 2016
Editada: jgg
el 6 de Abr. de 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.
Ver también
Categorías
Más información sobre Downloads en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!