Info

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

Can you solve this??

1 view (last 30 days)
Benjamin Murgic
Benjamin Murgic on 20 Oct 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
Hi, I need help. I have this problem, how to whrite this in code
0,01x^5-1.4x^3+80x+16.7
  2 Comments
KSSV
KSSV on 20 Oct 2020
We can solve this. But what have you attempted for your simple home work problem?
Benjamin Murgic
Benjamin Murgic on 20 Oct 2020
This is one of the first tasks, but this is also the first lesson I had.

Answers (2)

KSSV
KSSV on 20 Oct 2020
You can read about roots, solve.
I suggest you to read the function roots.

Image Analyst
Image Analyst on 20 Oct 2020
% "how to whrite this in code 0,01x^5-1.4x^3+80x+16.7"
% Commas do both statements in sequence - one after the other.
% The first statement does nothing really
0
% Now the second statement. 01 is the same as 1. Use * to multiply.
1 * x^5 - 1.4 * x ^ 3 + 80 * x + 16.7
  2 Comments
Image Analyst
Image Analyst on 20 Oct 2020
Not sure what "solve" means to you. Do you mean plot it? Here is better code:
% Create x
x = linspace(-15, 15, 1000);
% Create y
y = x .^ 5 - 1.4 * x .^ 3 + 80 * x + 16.7;
% Plot y vs. x.
plot(x, y, 'b-', 'LIneWidth', 2);
title('y = x .^ 5 - 1.4 * x .^ 3 + 80 * x + 16.7', 'FontSize', 20);
xlabel('x', 'FontSize', 20);
ylabel('y', 'FontSize', 20);
grid on;
You didn't tag it as homework. If it is, you can't submit it or else your instructor's plagiarism detector may notice it.
Benjamin Murgic
Benjamin Murgic on 20 Oct 2020
Thanks a lot for these examples

Tags

Community Treasure Hunt

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

Start Hunting!