Menu
×
×
Correct!
Exercise:Insert the missing method to export data in Matlab format:
from scipy import io
import numpy as np
arr = np.arange(10)
io.@(7)('arr.mat', {"vec": arr})
from scipy import io
import numpy as np
arr = np.arange(10)
io.savemat('arr.mat', {"vec": arr})
Not CorrectClick here to try again. Correct!Next ❯ |