Info

This question is closed. Reopen it to edit or answer.

I want to solve this equation and plot it but lot of errors are coming kindly help

2 views (last 30 days)
x=0:3;
y=diff((x^3)*(ln(3*x+1))^2)
  2 Comments
John D'Errico
John D'Errico on 4 May 2017
Edited: John D'Errico on 4 May 2017
I see three distinct problems (arguably a 4th too), one of which was done 3 separate times. That many problems in essentially one short line of code suggests you need to read the getting started tutorials. While you might think that this comment is non-constructive since it does not directly answer your question, in fact, it is. While somebody will probably come along and show you what to change in that one line, there are also problems of concept, that suggest you don't understand MATLAB. Showing you how to get one line of code right will not help you in the long run, whereas reading the basic documentation will serve you greatly.

Answers (1)

Santhana Raj
Santhana Raj on 5 May 2017
Matrices multiplication can be element by element or vector multiplication. For element by element, which I assume you want, the operator is
.*
Secondly, ln is not a function in matlab. Use log.
Thirdly, I think you want x to be from 0 to 3. whatever you have written will create 4 elements. [0 1 2 3]. I am assuming that you want to do [0:0.1:3]
Fourthly, are you sure you want the difference and not the derivative.

Community Treasure Hunt

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

Start Hunting!