整理Matlab 学习笔记.pptxVIP

  • 1
  • 0
  • 约小于1千字
  • 约 8页
  • 2021-01-23 发布于广东
  • 举报
Matlab 教程 命令+指定参数 表 3-1;2;3;4;5;... as well as the singular values. svd(A) ans = 12.3171 0.5149 0.1577 The poly function generates a vector containing the coefficients of the characteristic polynomial. The characteristic polynomial of a matrix A is p = round(poly(A)) p = 1 -5 5 -1 We can easily find the roots of a polynomial using the roots function. These are actually the eigenvalues of the original matrix. roots(p) ans = 3.7321 1.0000 0.2679 MATLAB has many applications beyond just matrix computation. To convolve two vectors ... q = conv(p,p) q = 1 -10 35 -52 35 -10 1 ... or convolve again and plot the result. ;r = conv(p,q) plot(r); r = 1 -15 90 -278 480 -480 278 -90 15 -1 ;8

文档评论(0)

1亿VIP精品文档

相关文档