how do we make vector the same length ( i get the error: vector must be the same length)
조회 수: 1 (최근 30일)
이전 댓글 표시
x=linspace(0,100);
y=linspace(0,100);
z=(-8.*x)/(x.^2+ y.^2 +1);
plot3(x,y,z)
댓글 수: 0
답변 (1개)
the cyclist
2021년 10월 7일
편집: the cyclist
2021년 10월 7일
x=linspace(0,100);
y=linspace(0,100);
z=(-8.*x)./(x.^2+ y.^2 +1); % Note that I changed this to ./
plot3(x,y,z)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!