Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to find Y value that corresponds to the maximum X value in these graphs?

1 回表示 (過去 30 日間)
Ismail Qeshta
Ismail Qeshta 2019 年 2 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi,
I need to find the Y value that corresponds to the maximum X value for the curves attached herewith.
I tried to use interp1, but I am not sure how to make it for several files.
Can anyone please help me with this?
Thank you.
  5 件のコメント
Ismail Qeshta
Ismail Qeshta 2019 年 2 月 19 日
編集済み: Ismail Qeshta 2019 年 2 月 19 日
Hi Bob,
I tried to develop this code, but it does not work.
I get the following error message:
Index in position 1 is invalid. Array indices must be positive integers or logical values.
Error in ResidualDisp (line 10)
maxy = matDrift(max(matDrift(:,1)),2);
clear; clc;
Folder = cd;
N=10;
for k = 1:N;
Driftt = sprintf('X%d.out', k);
matDrift = importdata(fullfile(Folder, Driftt));
maxy = matDrift(max(matDrift(:,1)),2);
end

回答 (1 件)

KSSV
KSSV 2019 年 2 月 19 日
files = dir('*.txt') ;
N = length(files) ;
iwant = zeros(N,2) ;
for i = 1:N
data = load(files(i).name) ;
[val,idx] = max(data(:,1)) ;
iwant(i,:) = [val data(idx,2)] ;
end
  8 件のコメント
Ismail Qeshta
Ismail Qeshta 2019 年 2 月 19 日
Hi KSSV,
Thank you for your suggestion.
I am not sure, I have used it as below, but it still does not work.
The updated code:
files = dir('*.out') ;
N = length(files) ;
iwant = zeros(N,2) ;
for i = 1:N
data = load(files(i).name) ;
[val,idx] = sort_nat((max(data(:,1))));
iwant(i,:) =[val data(idx,2)];
end

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by