How change only second number in a=ones(1,10)?

5 Ansichten (letzte 30 Tage)
Bajdar Nouredine
Bajdar Nouredine am 16 Jan. 2024

Akzeptierte Antwort

Dyuman Joshi
Dyuman Joshi am 16 Jan. 2024
Simply use indexing to change the element -
a = ones(1,10);
a(2) = 2
a = 1×10
1 2 1 1 1 1 1 1 1 1

Weitere Antworten (1)

Jaime Abad Arredondo
Jaime Abad Arredondo am 16 Jan. 2024
You should look at the syntax for array slicing. In matlab it's fairly easy. You would do something like:
a=ones(1,10);
disp(a)
1 1 1 1 1 1 1 1 1 1
a(2)=2;
disp(a)
1 2 1 1 1 1 1 1 1 1
Cheers!

Kategorien

Mehr zu Operators and Elementary Operations finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by