Feeds
답변 있음
Extracting only real numbers from a vector containing both real and complex values
Hello You can use something like this: A = [1 2 7+i 3 8+i 4 9+i 5 6]; m = 1; n = length(A); for k = 1:n if isreal(A(k)...
Extracting only real numbers from a vector containing both real and complex values
Hello You can use something like this: A = [1 2 7+i 3 8+i 4 9+i 5 6]; m = 1; n = length(A); for k = 1:n if isreal(A(k)...
거의 4년 전 | 0
