|
Hi all,
I have time-longitude data consisting westward and eastward propagation cloud movement. I plot this two data into time-longitude space. I have calculated the trajectory of the movement; start and end point of both westward and eastward propagation.
For westward, the trajectory of the movement is plotted as:
for i=1:1: length(yrw)
line([Lonbeginw(i) Lonendw(i)],[DateNumberbGnw(i) DateNumberEndw(i)],[0.1 0.1],'LineStyle','-', 'LineWidth',2, 'Color','r')
end
For eastward, the trajectory is plotted as
for i=1:1: length(yre)
line([Lonbegine(i) Lonende(i)],[DateNumberbGne(i) DateNumberEnde(i)],[0.1 0.1],'LineStyle','-', 'LineWidth',2, 'Color','g')
end
Question: I would like to examine when the two lines (westward and eastward) intersect each other for all dataset (length(yrw) for westward and length(yre) for eastward). Any suggestion for this matter ?
Thanks for help
|