Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can I add this text with values into my legend?

1 回表示 (過去 30 日間)
Mary Hemler
Mary Hemler 2020 年 6 月 5 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have the following code for my plot legend currently:
baseNames = {'T9C11','T8C7','T8C5','T9C6'};
baseValues = mutualInfoTotal([67 52 50 62]); % or whatever the indices are
NewNames = cellspikes(numel(baseNames,1));
for idx = 1:length(baseNames)
NewNames{idx} = sprintf('%s, MI = %2.2f',baseNames{idx},baseValues(idx));
end
legend(NewNames)
which ends up saying something like "T9C11, MI = 43.95" for each entry on the legend. But I would like to change this to "T9C11, MI = 43.95 bits/sec; 3.45 bits/spk" So I would like to draw from the corresponding index values of a different variable, MISpikeTotal, for the bits/spk values. How can I do this?

回答 (1 件)

Matt J
Matt J 2020 年 6 月 5 日
編集済み: Matt J 2020 年 6 月 5 日
Couldn't you just modify your call to sprintf appropriately?
NewNames{idx} = sprintf('%s, MI = %2.2f; %2.2f bits/spk',...
baseNames{idx}, baseValues(idx), MISpikeTotal(idx));
  1 件のコメント
madhan ravi
madhan ravi 2020 年 6 月 5 日
Maybe it was too much to type xD for the OP.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by