필터 지우기
필터 지우기

creating .mat files with variables

조회 수: 1 (최근 30일)
PK
PK 2013년 1월 25일
hello all how can i create as .mat file with 4 variables in it of diff sizes like a=1x1 mtx,b=100x128mtx,c=116x128 mtx and d=1x128 mtx.

채택된 답변

TAB
TAB 2013년 1월 25일
a=10;
b=rand(100,128);
c=rand(116,128);
d=rand(1,128);
save('myfile.mat','a','b','c','d');
  댓글 수: 1
PK
PK 2013년 1월 26일
Is it possible to create one variable with the specific ranges like b=100x128 matrix in the range of [0.001 to 0.005]

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by