log(b,x) works in MuPad but not in the command line
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello folks! i am new at this.. mmm why this version of the log function,log (b,x), works only in MuPad window but not if i enter it in MATLAB command window. this error msg appears when i entered in the command line "Error using log Too many input arguments." any help
0 Commenti
Risposte (1)
Azzi Abdelmalek
il 9 Ago 2015
Then use
log(x)/log(b)
3 Commenti
Azzi Abdelmalek
il 9 Ago 2015
You can create your own function
logb=@(b,x) log(x)/log(b)
then call it
b=10
x=5
logb(b,x)
Walter Roberson
il 9 Ago 2015
MuPAD is really a separate programming language. Not all parts of it have been interfaced directly to MATLAB.
Vedere anche
Categorie
Scopri di più su Get Started with MuPAD 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!