What function does the following code perform?

1 visualización (últimos 30 días)
Ishaan
Ishaan el 11 de Mzo. de 2014
Respondida: Niklas Nylén el 11 de Mzo. de 2014
tol=[1.d-8,1.d-8];

Respuestas (1)

Niklas Nylén
Niklas Nylén el 11 de Mzo. de 2014
The d can apparently be used instead of e for exponent number formats, i.e. the following are equal:
1d-8
1e-8
10^-8
The dot after the ones are just decimal points which are not followed by any decimals.
So, the answer to your question is that the code creates the matrix
tol = [0.00000001 0.00000001]

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by