function in matlap#

1 visualización (últimos 30 días)
Matthew Hayes
Matthew Hayes el 6 de Mayo de 2021
Respondida: Jan el 6 de Mayo de 2021
I am having a problem with function in matlap. I have these questions and i dont really know where to start. I am new to matlap and functions so i could use some help.
Converting Bitcoins to pound sterling.
In April 2021 the conversation rate between mBTC (milli-Bitcoin) and British Pounds (GBP or £) is 1 mBTC = 40.34 £ (a) Find the function x f −→ y = f(x) which converts a value in mBTC denoted by x to a value in £denoted by y.
(b) Write the corresponding function in matlab.
(c) Using a for-loop, plot a few values on a graph.
(d) Find the inverse function which converts £to mBTC and plot it.
I dont even know where to start.

Respuestas (3)

Stephan
Stephan el 6 de Mayo de 2021

Walter Roberson
Walter Roberson el 6 de Mayo de 2021
f = @(x) x * appropriate_multiplier_goes_here - transaction_cost(x)
where transaction_cost is a function that calculates the transaction cost of converting x Bitcoins into pounds.

Jan
Jan el 6 de Mayo de 2021
The actual problem is trivial: All you have to do is to multiply the input by a scalar.
Your problem is most likely (you didn't explain this important detail), that you do not know how to write a function. Then please read the "Getting Started" chapters of the documentation and solve this free online course: https://www.mathworks.com/learn/tutorials/matlab-onramp.html

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by