文章目录
1. 一维向量二维化
(1)reshape
>> a=[1 2 3 4 5 6];b=reshape(a,[],2)
b =
1 4
2 5
3 6
2. 绘制3维图像
(1)scatter3
scatter3(X,Y,Z,'.');
(2)surf
surf(a,'EdgeColor','None'); %a为二维数组
3. 字符串拼接
https://blog.csdn.net/qq_45467083/article/details/103067746
4. 读取文件夹内所有文件
fileFolder=fullfile('.\data');
dirOutput=dir(fullfile(fileFolder,'*.txt'));
fileNames={dirOutput.name};
for i = 1:200
[Tus,Angle,V_theta,Range] = importDataPoints([fileFolder '\' char(fileNames(i))]);
X=Range.*cos(V_theta/180*pi).*cos(Angle/180*pi);
Y=Range.*cos(V_theta/180*pi).*sin(Angle/180*pi);
Z=Range.*sin(V_theta/180*pi);
scatter3(X,Y,Z,'.');hold on;
end
5. 获取数组大小
(1) 一维数组
a = 1:10;
>> length(a)
ans = 10
>>
(2) 二维数组
>> a = [1 2 3;
4 5 6];
>> [m,n] = size(a)
m = 2
n = 3
6. 读文件数据
Matlab学习手记——文件读写完整版
https://blog.csdn.net/u012366767/article/details/81565427
7. 写文件数据
MATLAB中将数据写入TXT文本文档中
https://blog.csdn.net/qq_40969467/article/details/82735611
fid=fopen(['d:\','B.txt'],'w');%写入文件路径
[r,c]=size(B); % 得到矩阵的行数和列数
for i=1:r
for j=1:c
fprintf(fid,'%f\t',B(i,j));
end
fprintf(fid,'\r\n');
end
fclose(fid);
8. 设定坐标范围
axis([xmin xmax ymin ymax]);
axis([1 120000 -inf inf]);
9. 输出error
注意,error后面的指令不会继续被执行。
error('发生了一个error');
10.isempty
matlab里面没有null变量,空变量为0x0数组,即[],判断方法是
isempty(var)