Extracting data from a matrix in slanted rectangular form
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abhilash K S
am 8 Feb. 2017
Kommentiert: Saurabh Agarwal
am 6 Jul. 2021
i have data consisting of x, y and z . I want to extract data from the above matrix in a slanted rectangular shape( If I joined the vertex values of rectangles it will be slanted and there are 4 x values and 4 y values ). The image shows the contour of the data I want to extract the data in the rectangle as shown in the figure (Thick bordered).
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160460/image.png)
thank you
0 Kommentare
Akzeptierte Antwort
KSSV
am 8 Feb. 2017
clear all
[X,Y,Z] = peaks(100) ; % data
% the slant rectangle I picked
rect = [
-1.5000 0.1399
-0.2005 1.6968
1.0300 -0.1224
-0.6014 -1.2770
-1.5000 0.1399
] ;
figure ; surf(X,Y,Z) ; view(2) ; hold on ; plot(rect(:,1),rect(:,2),'b') ;
% get the indices of piints which are inside the rectangle
id = inpolygon(X(:),Y(:),rect(:,1),rect(:,2));
% initilaize the required matrices
Xi = NaN(size(X)) ;
Yi = Xi ;
Zi = Xi ;
% fill the values inside rectangle
Xi(id) = X(id) ;
Yi(id) = Y(id) ;
Zi(id) = Z(id) ;
figure ;surf(Xi,Yi,Zi)
4 Kommentare
Saurabh Agarwal
am 6 Jul. 2021
From this inclined matrix (as rectangle is inclined) is getting. How to make a straight matrix from this?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Contour Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!