Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Can you solve this??

1 vue (au cours des 30 derniers jours)
Benjamin Murgic
Benjamin Murgic le 20 Oct 2020
Clôturé : MATLAB Answer Bot le 20 Août 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 commentaires
KSSV
KSSV le 20 Oct 2020
We can solve this. But what have you attempted for your simple home work problem?
Benjamin Murgic
Benjamin Murgic le 20 Oct 2020
This is one of the first tasks, but this is also the first lesson I had.

Réponses (2)

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

Image Analyst
Image Analyst le 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 commentaires
Image Analyst
Image Analyst le 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 le 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!

Translated by