필터 지우기
필터 지우기

import to the workspace a .mat file saved in a folder other than pwd

조회 수: 3 (최근 30일)
Alberto Acri
Alberto Acri 2023년 7월 22일
편집: Stephen23 2023년 7월 22일
How can I import a .mat file saved in a folder other than pwd to the workspace?
folder = 'C:\Users\Desktop\folder_test';
file = 'test.mat';

채택된 답변

Stephen23
Stephen23 2023년 7월 22일
편집: Stephen23 2023년 7월 22일
The recommended approach is to use FULLFILE (and to always LOAD into an output variable):
S = load(fullfile(folder,file))
Why do you imagine that this has changed since last time you asked how to define path strings?:

추가 답변 (1개)

Bruno Luong
Bruno Luong 2023년 7월 22일
편집: Bruno Luong 2023년 7월 22일
folder = 'C:\Users\Desktop\folder_test';
file = 'test.mat';
load([folder filesep() file])

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by