Azzera filtri
Azzera filtri

how can i type this function in matlab?

1 visualizzazione (ultimi 30 giorni)
IANC Cristian Gabriel
IANC Cristian Gabriel il 13 Dic 2020
Risposto: Abhishek Gupta il 16 Dic 2020
  3 Commenti
Walter Roberson
Walter Roberson il 13 Dic 2020
Is it the (5+3x) that is being raised to a power, or is it 5 + 3 * (x to a power) ?
dpb
dpb il 13 Dic 2020
On re-looking, I'll bet your second interpretation is the correct one, Walter. My z then is of no help and is in fact, wrong.

Accedi per commentare.

Risposte (1)

Abhishek Gupta
Abhishek Gupta il 16 Dic 2020
Hi,
As per my understanding, you want to write the 'g(x)' function in MATLAB. On assuming that in the given function (5+3x) is raised to a power, the solution would look something like as follows: -
syms x g(x) f(x)
f(x) = 5+3*x;
g(x) = sqrt(((x^f(x))^f(x))^f(x));
Or if it is 5 + 3*(x to power), then the implementation would be: -
syms x g(x)
g(x) = sqrt(x^(5+3*x^(5+3*x^(5+3*x))));

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by