How to fit data to another data

2 views (last 30 days)
Alina Li
Alina Li on 8 Apr 2020
Answered: Ameer Hamza on 8 Apr 2020
I have two 1000000x1 vectors of data (data1 and data2). data1 is normalized. Now I need to scale data2 to data1.
  2 Comments
lazymatlab
lazymatlab on 8 Apr 2020
You need to be more specific. What do you mean by 'scale'? Do you want to multiply a scalar to data2? Or each element of data2 needs to scale individually?
Alina Li
Alina Li on 8 Apr 2020
This is a more of a general question. I want to scale each element of data2 to data1. So the size of plot of data1 (i.e. the values in vector of data1) is proportional to data2 vector/plot. I have a variety of different data I need to work with. So my question is not case specific.

Sign in to comment.

Answers (1)

Ameer Hamza
Ameer Hamza on 8 Apr 2020
You can try something like this
x % the normalized array
y % the unnormalized array
y_norm = normalize(y, 'range')*(max(x)-min(x))+min(x)
It will make the min() and max() values of x and y same.

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!