How to access *.mat files using Matlab drive and load them ?

12 views (last 30 days)
D = fullfile(matlabdrive,'data.mat')
D = '/MATLAB Drive/data.mat'
K = load(D)
Error using load
Unable to read file '/MATLAB Drive/data.mat'. Permission denied.

Accepted Answer

Yongjian Feng
Yongjian Feng on 23 Nov 2021
Try without MATLAB Drive? Just
load('data.mat')

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!