×
×
Correct!
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! |
This will reset the score of ALL 20 exercises.
Are you sure you want to continue?