Filter löschen
Filter löschen

How do these Python commands have to look in Matlab to calculate A and B and show me the two results?

1 Ansicht (letzte 30 Tage)
A = 10+10 B = A+10
print("A =",A) print("B =",B)
--- will show me: ---
A = 20 B = 30

Akzeptierte Antwort

KSSV
KSSV am 26 Sep. 2022
A = 10+10;
B = A+10 ;
fprintf('A = %f, B = %f\n',A,B) ;
A = 20.000000, B = 30.000000

Weitere Antworten (0)

Kategorien

Mehr zu Call Python from MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by