How to get z for different x

x = [-2:0.1:2];
z=x.*(1-x).*(2-x).*(4-x)/((6-x)-(1-x).*(x-7));
I am getting error. Please correct my problem.

댓글 수: 2

Thomas
Thomas 2012년 12월 18일
what error are you getting? what answer do you expect?
Atom
Atom 2012년 12월 18일
편집: Atom 2012년 12월 18일
There are 41 values of x and for each x I need one z. I am not getting this. I am getting only one value of z (=-2.1203).

댓글을 달려면 로그인하십시오.

 채택된 답변

Wayne King
Wayne King 2012년 12월 18일
편집: Wayne King 2012년 12월 18일

0 개 추천

x = [-2:0.1:2];
z = x.*(1-x).*(2-x)./((6-x).*(x-7));
You just forgot a ./
Now you should have a vector
x = [-2:0.1:2];
z = x.*(1-x).*(2-x)./((6-x).*(x-7));
plot(x,z)

추가 답변 (2개)

Thomas
Thomas 2012년 12월 18일

0 개 추천

x = [-2:0.1:2];
z=x.*(1-x).*(2-x).*(4-x)./((6-x)-(1-x).*(x-7))
You missed the . before the division to do element by element division
Daniel Shub
Daniel Shub 2012년 12월 18일

0 개 추천

Presumably you want to use ./ instead of /, just like you are using .* instead of *

카테고리

도움말 센터File Exchange에서 Linear Algebra에 대해 자세히 알아보기

태그

질문:

2012년 12월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by