Conversion Wolfram Mathematica to Matlab (Do loop)

1 visualizzazione (ultimi 30 giorni)
Juan Angel
Juan Angel il 23 Ago 2021
Commentato: Juan Angel il 24 Ago 2021
Hello!. I'd like to ask for your help please. This is just a question from an extremely simple Mathematica code, and I just want to know how I could convert it to the Matlab language:
Clear[sum, n]
sum = 0;
Do[sum = sum + n, {n, 1, 100}]
Print[sum]
Thank you very much!
  2 Commenti
John D'Errico
John D'Errico il 23 Ago 2021
It seems like you are asking pretty basic stuff. And that says you need to read the manual. Try the MATLAB onramp tutorials.

Accedi per commentare.

Risposte (1)

James Tursa
James Tursa il 23 Ago 2021
result = sum(1:100);

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by