MATLAB: Logarithmic equation with ln

equationlnlogMATLAB

Hello ,
How can i write this in matlab? I tried to read the documentation but it confuses me more. My variable b is equal to 0.174 ln(59.6 rf /rs). Any ideas?
Thank you!

Best Answer

b = 0.174 * log( 59.6 * rf ./rs )
Related Question