Azzera filtri
Azzera filtri

function problem in matlab

2 visualizzazioni (ultimi 30 giorni)
ali hassan
ali hassan il 11 Dic 2020
Risposto: Walter Roberson il 11 Dic 2020
this is my function to get value of n but its not working.
code:
function[n]=agc(x)
n=1
(0.3790)*x=(1.1)^n
end

Risposta accettata

Walter Roberson
Walter Roberson il 11 Dic 2020
(0.3790)*x=(1.1)^n
implies that
log(0.3790) +log(x) = n * log(1.1)
which implies that
n = (log(0.3790) + log(x))./log(1.1)

Più risposte (0)

Categorie

Scopri di più su Manage Products in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by