Using contourf with 1D data
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi, I need to plot data in a polar projection using something like contourf. I have three 1D vectors something like as follows:
if true
% code
end
x = rand(1,10);
y = rand(1,10);
contourf(x,y,z);
if true
% code
end
This gives an error as z needs to be 2D, anyone know how I can reshqape z to suit padding everywhere else with zeros???
댓글 수: 0
답변 (1개)
Arthur
2012년 11월 20일
I don't really understand what you want to do. Why do you want to show a vector as 2D data???? Especially with random x and y... Anyway, you could pad zeros with paddarray (if you have de image processing toolbox). Otherwise, you could also use this:
z_padded = zeros(10);
z_padded(:,1) = z;
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Purple에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!