Changing the quantization range while using 'uencode'

조회 수: 1 (최근 30일)
Siddharth Gopujkar
Siddharth Gopujkar 2020년 9월 12일
답변: Siddharth Gopujkar 2020년 9월 12일
While using 'uencode', the quantization takes place in steps of 1 starting from 0 (y-axis). How can I change this to, let's say, -10 to 10?

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 9월 12일
Use rescale()
x = rand(1, 10);
y = uencode(x, 3);
y_new = rescale(y, -10, 10);

추가 답변 (1개)

Siddharth Gopujkar
Siddharth Gopujkar 2020년 9월 12일
Thank you!
The random number generation didn't help, but just using rescale helped!

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by