How to update main grid with a seperately created subgrid values
4 次查看(过去 30 天)
显示 更早的评论
Hello dear all,
Currently, having a difficulty to design an algorithm to update a grid's Z values with another subgrid values.
The main grid is 93x315 X,Y and Z(with NaN values). X,Y horizontal coordinates and Z is elevation.
Have another (xq,yq and zq) grid which is 24x24, I call it subgrid. This subgrid has X,Y values which cover smaller area inside of the main grid but Z values are different as it was interpolated. How can I substitute main grid's Z values with subgrid's interpolated Z values by finding correct location using their X and Y values.
As this issue exceeds my abilities, I would be appreciated for any suggestions, Thank you, Alper.
0 个评论
采纳的回答
darova
2021-8-11
Here is an example
ind1 = X < min(x(:)) & X < max(x(:)); % indices inbetween smallest and largest 'x'
ind2 = Y < min(y(:)) & Y < max(y(:)); % indices inbetween smallest and largest 'y'
ind = ind1 & ind2; % here is a region inside big matrix
The question: is the region will have size 24x24?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!