topograph created by EEGLAB using ERP
5 ビュー (過去 30 日間)
古いコメントを表示
How can I uniform the Y label on the left of the two picture?I made the photos by use of EEGLAB.


回答 (1 件)
Bjorn Gustavsson
2021 年 9 月 28 日
For this you could do something like this (except I will use random data and plain imagesc):
I_peaks = rand(3,1);
for i1 = 3:-1:1
Im{i1} = I_peaks(i1)*randn(34,34);
end
for i1 = 3:-1:1
subplot(1,3,i1)
imagesc(Im{i1})
cx(i1,:) = caxis;
end
cx_lims = [-1 1]*max(abs(cx(:)));
for i1 = 1:3
subplot(1,3,i1)
caxis([cx_lims])
end
cbh = colorbar;
This gets the intensity-limits from all subplots, sets the common intensity-limits to +/- of the max absolute intensity, you can/should adjust that to fit your needs.
You should know about tiledlayout and nexttile to use instead of subplot.
HTH
2 件のコメント
Bjorn Gustavsson
2021 年 9 月 29 日
Contact the authors of that toolbox, they should know how to fix this.
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!