datasets related 2 questions

1 visualizzazione (ultimi 30 giorni)
Muazma Ali
Muazma Ali il 27 Giu 2022
Commentato: Walter Roberson il 27 Giu 2022
Hi!
I have 2 questions:
  • Can I have a column in a dataset including two strings? how?
  • I know how I can download a dataset or import it in matlab but I dont know how I can make a dataset when I am computing values of different variables afterwards in my program. How can this be done?
thanks
  4 Commenti
Muazma Ali
Muazma Ali il 27 Giu 2022
Thanks, my problem is just that I want an array where each element consists of two words , as my grouping variable in gcatter: {"KCl", "NaCl"}
Walter Roberson
Walter Roberson il 27 Giu 2022
You cannot do that with dataset(): the string() object will get converted to cell array of character vectors. Run the code I posted

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 27 Giu 2022
No, dataset() does not support storing string() objects. dataset() automatically converts string() objects to a cell array of character vectors.
foo = ["a", "bc";"de", "f" ]
bar = dataset(foo)
This also shows one way to build a dataset() from computed variables.
I would not recommend any new development for dataset(). I recommend that you switch to table().

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by