simple code for the log computation
Ältere Kommentare anzeigen
Hello,
Please can anyone help me with a short code to do the following computation below
X = { 1, 2, 3, 5, 6}
M1 = log10(X(:,1));
M2 = log10(X(:,2));
M3 = log10(X(:,3));
M4 = log10(X(:,4));
Thanks in advance
Tino
Akzeptierte Antwort
Weitere Antworten (1)
Andrei Bobrov
am 25 Apr. 2019
1 Stimme
X = [1, 2, 3, 5, 6];
M = log10(X);
1 Kommentar
Tino
am 25 Apr. 2019
Kategorien
Mehr zu Downloads finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!