Filter löschen
Filter löschen

How to create a Contour plot?

1 Ansicht (letzte 30 Tage)
Ashley
Ashley am 13 Okt. 2013
Kommentiert: sixwwwwww am 14 Okt. 2013
Hello, I need to create a contour plot of a column vector, but keep getting the error that Z must be a 2X2 matrix. Is there any way of just arbitrarily assigning another column to Z data and going ahead with the plotting?
So far, my Z matrix has 1 column and 233 rows. I have to basically create a pseudosection(contour of Z) vs. depth which goes up to 13.5 meters and horizontal distance along ground that is 27 m. Please help, am willing to provide any other information if it helps. Thank you.
Ashley
  3 Kommentare
Image Analyst
Image Analyst am 14 Okt. 2013
Yes, provide the other information because I've read your post 5 times and can't figure it out. http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
Ashley
Ashley am 14 Okt. 2013
Hello, I have X,Y and Z matrices which are basically 234 X 1 Column Vectors. It keeps saying that I have to have Z be a 2X2 matrix, and that X needs to match the number of columns in Z, etc. How do I make a 2X2 matrix out of a 234 X 1 column vector? Hope this makes sense. Thank you. Ashley

Melden Sie sich an, um zu kommentieren.

Antworten (1)

sixwwwwww
sixwwwwww am 14 Okt. 2013
Dear Ashley, in order to create contour plot you need to have Z as a matrix not as a vector. Also if you have X and Y vectors of 234 length then you will need Z a matrix of size 234x234 to use
contour(X, Y, Z)
See for more information about "contour": http://www.mathworks.com/help/matlab/ref/contour.html Otherwise you need to use plot3 accept Z as a vector as in your case
plot3(X, Y, Z)
See for more information about "plot3": http://www.mathworks.com/help/matlab/ref/plot3.html
  2 Kommentare
Ashley
Ashley am 14 Okt. 2013
Hello, Yes, however that is my question! How do I create a 234X234 matrix out of a 234X1 column vector? Is there a function or way of doing this? Thank you.
Ashley
sixwwwwww
sixwwwwww am 14 Okt. 2013
You can repeat Z vector 234 times like this:
Z = rand(234,1); % put your Z vector here
ZZ = zeros(length(Z), length(Z));
for i = 1:length(Z)
ZZ(:,i) = Z(:);
end

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Contour Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by