zoukankan      html  css  js  c++  java
  • matlab中repmat函数的用法

    转载:https://blog.csdn.net/facetosea1/article/details/83573859

    B = repmat(A,m,n)
    B = repmat(A,[m n])
    B = repmat(A,[m n p...])

    这是一个处理大矩阵且内容有重复时使用,其功能是以A的内容堆叠在(MxN)的矩阵B中,B矩阵的大小由MxN及A矩阵的内容决定,如果A是一个3x4x5的矩阵,有B = repmat(A,2,3)则最后的矩阵是6x12x5

    例如:
    >>B=repmat( [1 2;3 4],2,3)
    B = 

    1      2      1     2    1    2

    3      4      3     4    3    4

    1     2     1     2     1     2

    3     4     3     4     3     4


    其结果变为4X6。A也可以置放文字串,如:


    >>C=repmat(' Long live the king!', 2,2)
    C =
    Long live the king! Long live the king!
    Long live the king! Long live the king!

    也可置放其他的:


    >> D=repmat(NaN,2,5)

    D =
    NaN   NaN   NaN   NaN   NaN
    NaN   NaN   NaN   NaN   NaN


    转自:https://blog.csdn.net/anqier1009/article/details/5214978

  • 相关阅读:
    apk反编译
    Hybrid App
    Hybrid App
    Hybrid App
    Hybrid App 介绍
    android-adb
    .java生成dex文件
    android Activity launch mode 知识点总结
    2018.10.15学习总结
    2018.10.12
  • 原文地址:https://www.cnblogs.com/MCSFX/p/12985512.html
Copyright © 2011-2022 走看看