Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How do I write the number 0.5 into a complex double of size <401x1 complex double>

1 Ansicht (letzte 30 Tage)
Ravindrnath
Ravindrnath am 22 Apr. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
How can write a number 0.5 repetitively into a complex double of size 401x1 complex double?

Antworten (1)

Walter Roberson
Walter Roberson am 22 Apr. 2018
A = complex(0.5 * ones(401,1));

Note: when you use this in an expression, if there are no complex components in the result of the expression, then the complex component will be dropped.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by