matlab中向量norm,【Matlab开发】matlab中norm范数以及向量点积、绘图设置相关
【Matlab開發】matlab中norm范數以及向量點積、繪圖設置相關
標簽(空格分隔): 【Matlab開發】
聲明:引用請注明出處外鏈網址已屏蔽
norm范數使用
help norm
norm Matrix or vector norm.
norm(X,2) returns the 2-norm of X.
norm(X) is the same as norm(X,2).
norm(X,1) returns the 1-norm of X.
norm(X,Inf) returns the infinity norm of X.
norm(X,'fro') returns the Frobenius norm of X.
在對某一個數組進行normalization的時候用起來十分方便,直接 X/norm(X)即可。
向量點積
>> help dot
dot Vector dot product.
C = dot(A,B) returns the scalar product of the vectors A and B.
A and B must be vectors of the same length. When A and B are both
column vectors, dot(A,B) is the same as A'*B.
點積跟點乘的區別需要注意一下,點積得到的是乘加,點乘不相加。
繪圖設置相關
1.坐標軸設置
范圍設置:
a. axis([xmin xmax ymin ymax])設置坐標軸在指定的區間
b. axis auto 將當前繪圖區的坐標軸范圍設置為MATLAB自動調整的區間
c. axis manual 凍結當前坐標軸范圍,以后疊加繪圖都在當前坐標軸范圍內顯示
d. axis tight 采用緊密模式設置當前坐標軸范圍,即以用戶數據范圍為坐標軸范圍比例:
a. axis equal 等比例坐標軸
b. axis square 以當前坐標軸范圍為基礎,將坐標軸區域調整為方格形
c. axis normal 自動調整縱橫軸比例,使當前坐標軸范圍內的圖形顯示達到最佳效果
范圍選項和比例設置可以聯合使用,默認的設置為axis auto normal
2.坐標軸刻度設置
set(gca, ’XTick’, [0 1 2]) X坐標軸刻度數據點位置
set(gca,’XTickLabel’,{‘a’,’b’,’c’}) X坐標軸刻度處顯示的字符
set(gca,’FontName’,’Times New Roman’,’FontSize’,14)設置坐標軸刻度字體名稱,大小
‘FontWeight’,’bold’ 加粗 ‘FontAngle’,’italic’ 斜體
對字體的設置也可以用在title, xlabel, ylabel等中
3.圖例
legend(‘a’,’Location’,’best’) 圖例位置放在最佳位置
4.設置曲線線寬、標記點大小,標記點邊框顏色和標記點填充顏色等。
plot(…,’Property Name’, Property Value, …)
Property Name 意義 選項
LineWidth 線寬 數值,如0.5,1等,單位為points
MarkerEdgeColor 標記點邊框線條顏色顏色字符,如’g’, ’b’等
MarkerFaceColor 標記點內部區域填充顏色顏色字符
MarkerSize 標記點大小 數值,單位為points
a=linspace(1,2,10)
plot(a,'--pr','linewidth',1.5,'MarkerEdgeColor','r','MarkerFaceColor','m','MarkerSize',10)
legend('a','Location','best')
title('a','FontName','Times New Roman','FontWeight','Bold','FontSize',16)
xlabel('T','FontName','Times New Roman','FontSize',14)
ylabel('a','FontName','Times New Roman','FontSize',14,'Rotation',0)
axis auto equal
set(gca,'FontName','Times New Roman','FontSize',14)
2015-11-06 調試總結 張朋藝
總結
以上是生活随笔為你收集整理的matlab中向量norm,【Matlab开发】matlab中norm范数以及向量点积、绘图设置相关的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 内存烤机大揭秘:性能对比,外观惊艳,使用
- 下一篇: 惊艳!a10 7870k处理器,性能狂飙