what is the difference between dsp.Maximum and max function in Matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi everyone
In the latest version of Matlab R2015a, I found many new function in the DSP System Toolbox, some of these function can be achieved using other function as I think.
now my question, is there a difference between such function (dsp.Maximum) and (max)? and many other like function
댓글 수: 0
답변 (1개)
Walter Roberson
2015년 8월 4일
dsp.maximum is a System Object, optimized for reducing memory access, especially for use with code generation.
댓글 수: 2
Walter Roberson
2015년 8월 5일
dsp.Maximum does not accept any vector inputs. dsp.Maximum accepts only property / value pairs:
H = dsp.Maximum('PropertyName',PropertyValue,...) returns a maximum-finding object, H, with each specified property set to the specified value.
The result is a System Object, which is a routine optimized for reducing memory access, especially when generating code. You have to step() the System Object returned by dsp.Maximum, and that System Object will return the outputs selected at the time the System Object was configured. The default is to return the maximum value and the index because that is a common operation; the user can configure other choices.
Suppose you are interfacing MATLAB with a DSP and you have some values that are currently stored on the DSP. If you use max() of the values then it is necessary to transfer the values from the DSP to MATLAB and perform the max() at MATLAB, and it would be common that the result would have to be transferred back to the DSP for a later operation. If you use dsp.Maximum class, then to save I/O, the maximum will be taken right on the DSP, so the data does not have to be transferred to MATLAB and the result does not have to be transferred back to the DSP.
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with DSP System Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!