How can I make data non-dimensionalised with XY Plot data file?

8 ビュー (過去 30 日間)
Matt Miles
Matt Miles 2014 年 2 月 28 日
回答済み: nick 2025 年 4 月 14 日
I have a lot of data in an XY Plot file and I need to divide all the data that is to be plotted along the x-axis by 0.3855 and need to multiply all the data to be plotted along the y axis by -1. Can anyone help me write some code? I presume it is quite simple but any help would be hugely appreciated.
Thank you

回答 (1 件)

nick
nick 2025 年 4 月 14 日
Hello Matt,
You can use rdivide and rmultiply operations for linear scaling of the data, as shown:
data = load('your_data_file.txt');
% Separate the data into x and y components
x_data = data(:, 1);
y_data = data(:, 2);
% Transform the data
x_transformed = x_data / 0.3855;
y_transformed = y_data * -1;
You can refer to the following documentation to know more about array and matrix operations :

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by