How can i write a .ymal file ??

90 ビュー (過去 30 日間)
Giorgia Fusaroli
Giorgia Fusaroli 2021 年 6 月 29 日
編集済み: Bill Tubbs 2024 年 3 月 31 日 19:01
Hi everyone,
i have to write in a .yaml file a vector of cells (first cell is a string, then i have a vector of number values and convert all in cell was a simple solution to have different types of variables in the same vector).
i don't know the extension .yaml and so i hope that someone of you could help me :)
I attach an example of what i'm saying:
signal = x; %vector of double
label = ('signal x'); %string
A = mat2cell(signal, ones(1,size(signal,1)), ones(size(signal,2))); %conversion in cell vector
B = cat(2,label,A); %concat string and cell vector in order to forming a row
%now i have to save B in a file with .yaml as extension
Maybe using .yaml file there is another solution to have label and signal in the same row :)
thank you in advance

採用された回答

Walter Roberson
Walter Roberson 2021 年 6 月 29 日
https://github.com/ewiger/yamlmatlab can be used to write YAML from MATLAB.
  1 件のコメント
cui,xingxing
cui,xingxing 2022 年 6 月 13 日
this yamlmatlab can not import and export my yml format. see my attachment

サインインしてコメントする。

その他の回答 (2 件)

Prakhar Rai
Prakhar Rai 2021 年 6 月 29 日
編集済み: Prakhar Rai 2021 年 6 月 29 日
As of now MATLAB does not support YAML parsing but you could use third party tools like 'yamlmatlab' for the task.
Please refer to the links: yamlmatlab and yamlmatlab github .

Bill Tubbs
Bill Tubbs 2024 年 3 月 31 日 18:59
編集済み: Bill Tubbs 2024 年 3 月 31 日 19:01
I find this third-party module by MartinKoch123 works well for reading and writing Yaml files:

カテゴリ

Help Center および File ExchangePrepare Model Inputs and Outputs についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by