Plots of functions involving quadratic denomonator

2 views (last 30 days)
I am having great trouble with a plot I think should be very simple. I want to plot the following:
x=[0:1:100]; y=6-400/(100+x.^2);
My first stab at google lead me to the x. trick, but strangely it seems to fail if I have a quadratic expression in the denominator. I assume this is a syntax problem. If I try to enter the second line above, I get the following error:
??? Error using ==> mldivide Matrix dimensions must agree.
I understand that x is a matrix, but how come it works when this term is in the numerator instead?
I appreciate any help you can give on this. Thanks for reading.

Accepted Answer

Jarrod Rivituso
Jarrod Rivituso on 4 Apr 2011
The "x trick" you are using is actually the element-wise exponentiation. MATLAB is inherently a matrix language (MATrix LABoratory) and by default it wants to do matrix computations.
So, the reason for your error is that you need to be using element-wise division too. Again, use the . to make it element-wise.
>> y = 6 - 400./(100+x.^2)
The reason it worked when x was in the numerator is because dividing or multiplying by a scalar is a special case that MATLAB makes an exception for.
  1 Comment
Timothy
Timothy on 4 Apr 2011
Dude, your a genius. That's exactly what I needed. Thanks for the help!

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!