Merge scatterhists to one- Create

4 次查看(过去 30 天)
Ivan Mich
Ivan Mich 2020-10-29
回答: Eric Sofen 2020-11-13
Hello,
I would like to merge scatterhists into one. I am using the following code but the final scatterhist is only for the one of my data. I realised that I cannot use as I would like command hold on.
my code:
clc
clear
catalogue_SH=readtable('INPUT1.txt');
YSH=table2array(catalogue_SHALLOW(:,1));
MSH=table2array(catalogue_SHALLOW(:,6));
catalogue=readtable('INPUT2.txt');
YeH=table2array(catalogue_DEPTH(:,1));
MTH=table2array(catalogue_DEPTH(:,6));
scatterhist(YSH,MSH)
hold on
scatterhist(YeH,MTH)
could you please help me?
PS: I am uploading one example of what I would like to do in order to help you. I found it in the Internet. How can I plot something like this?

回答(1 个)

Eric Sofen
Eric Sofen 2020-11-13
If you combine your SHALLOW and DEPTH data and add a simple grouping variable based on the height of SHALLOW and DEPTH, you can use the 'Group' parameter in scatterhist.
Something likes
group = [ones(size(YSH)); 2*ones(size(YeH))];
scatterhist([YSH;YeH],[MSH;MST],'Group', group)

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by