Azzera filtri
Azzera filtri

How to divide a matrix by a number

34 visualizzazioni (ultimi 30 giorni)
ly
ly il 22 Gen 2016
Modificato: Stephen23 il 22 Gen 2016
Hi,
I have a function like:
r=[0.1:0.1:10];
E=1/(r^3);
How to get value E with correct command.
I try several but it is not correct.

Risposta accettata

Torsten
Torsten il 22 Gen 2016
r=0.1:0.1:10;
E=1./(r.^3);
Best wishes
Torsten.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by