필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

who can create a surf y=0 in a defined domain?

조회 수: 1 (최근 30일)
Moein
Moein 2014년 10월 3일
댓글: Stephen23 2014년 10월 3일
hi friends
i want to create a surf y=0 in a domain by surf and linspace functions with this code:
hsp = surf(linspace(-0.3,1.3,200),zeros(200)+0.125,linspace(-0.251776695,0.501776695,200));
but it errors.
for the case z=0 the following code is correct:
hsp = surf(linspace(-0.3,1.3,200),linspace(-0.251776695,0.501776695,200),zeros(200)+0.125);
but for y=0 it errors:
Z must be a matrix, not a scalar or vector.
help me if you can.
thanks a lot
  댓글 수: 2
John D'Errico
John D'Errico 2014년 10월 3일
Don't just keep on asking the same question!
Stephen23
Stephen23 2014년 10월 3일
Please stop double posting (or in your case, triple posting).
If you wish to make people aware of your question, you only need to add a comment to the original question and it come to the front of the list.
Imagine other readers here: we don't know what advice you already have become on the other posts of the same question, and we are not paid to find all three posts of your identical question, compare the current best answers and see if we can add anything better.

채택된 답변

Mike Garrity
Mike Garrity 2014년 10월 3일
The 3rd arg to surf needs to be 2D. That's optional for the other two. You can use meshgrid to expand your 1D arrays out to 2D like this:
[x,z]=meshgrid(linspace(-0.3,1.3,200),linspace(-0.251776695,0.501776695,200));
surf(x,zeros(200)+.125,z)

추가 답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by