warning message using surf
이전 댓글 표시
Hi! I get this warning message but I don't know what to do....
Warning: Error updating Surface.
Update failed for unknown reason.
댓글 수: 1
KSSV
2021년 8월 20일
Show us the code which lead this error.
답변 (2개)
Valeria Leto
2021년 9월 27일
편집: Valeria Leto
2021년 9월 27일
0 개 추천
Walter Roberson
2021년 9월 27일
We cannot tell what length(u) or length(v) or size(Xq) or size(Yq) is.
You could get an error if size(Xq) is not the same as size(Yq) or size(Zq) or size(V_1)
for i=1:1:length(v)
V_1(i,:)=vq_1(1+(i-1)*length(u):1+(i-1)*length(u)+(length(u)-1),1)';
end
I suspect that could be written as
V_1 = reshape(vq_1, size(Xq));
I speculate that some values of vq_1 are NaN because you did not ask for extrapolation in the griddata()
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!