Q:

Write a NumPy program to create and display every element of a numpy array in Fortran order

0

Write a NumPy program to create and display every element of a numpy array in Fortran order

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
x = np.arange(12).reshape(3, 4)
print("Elements of the array in Fortan array:")
for x in np.nditer(x, order="F"):
    print(x,end=' ')
print("\n")

Sample Output:

Elements of the array in Fortan array:                                 
0 4 8 1 5 9 2 6 10 3 7 11

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now