Plotting, keep getting error that matrix dimensions must agree

3 views (last 30 days)
I keep getting the same error. I have changed the functions and limits and it worked but it will not work with the functions I need to plot. Not sure what to do, so any help is appreciated.
Thanks.
<<
>>
  1 Comment
the cyclist
the cyclist on 14 Jan 2017
Edited: the cyclist on 14 Jan 2017
In the future, please upload the code itself, rather than an image of the code. Then we can paste your code directly into MATLAB, which makes it much easier for us to help you.

Sign in to comment.

Accepted Answer

the cyclist
the cyclist on 14 Jan 2017
Edited: the cyclist on 14 Jan 2017
You need to use array operations (i.e. element-by-element operations) for what you want to do, rather than matrix operations. For example, you need
y = -1.436./x
in place of
y = -1.436/x
  3 Comments
the cyclist
the cyclist on 30 Jan 2022
@Muhammad Azrul Izmee, I suggest you open a new question, with the full description of your problem, instead of commenting on a 5-year-old question and not providing any details.

Sign in to comment.

More Answers (0)

Categories

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

Community Treasure Hunt

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

Start Hunting!