フィルターのクリア

Need help to get the minimum absolute value of intersection point

2 ビュー (過去 30 日間)
md mayeen uddin
md mayeen uddin 2021 年 9 月 4 日
コメント済み: md mayeen uddin 2021 年 9 月 4 日
below are my two vector L1(976x1) and L2(976x101) . i am calculatin the minimum absolute value where they intersecting. the figure below is for the command of
figure, plot(Tspan,y(:,1)), hold on, plot(tspan,SigV(:,81))
so if i run Tspan(rowOfMinValue) and tspan(rowOfMinValue) i am getting different values at column no 81 than the graph for both case.i need the value exactly where they are intersecting.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
tspan =[0.0976:-0.0001:0] % Span for L1
Tspan = [0 : 0.0001: 0.0976] % Span for L2
L1 = y( : ,1);
L2 = SigV;
dL =L2(:,1:end)- L1;
columns = length(dL(1,:));
rowOfMinValue = [];
for col = 1 : columns
% Find min value in this column, and it' s row number (index).
[minValue(col), rowOfMinValue(col)] = min(abs(dL(:, col)));
end
% Report to command window:
rowOfMinValue
  2 件のコメント
Matt J
Matt J 2021 年 9 月 4 日
編集済み: Matt J 2021 年 9 月 4 日
We can't run your code, because we don't have y or SigV.
md mayeen uddin
md mayeen uddin 2021 年 9 月 4 日
Hi mat, i have attached both y and SigV here. since SigV is (976x101) i just shared you the SigV(: , 81) which is represented in Figure 1

サインインしてコメントする。

採用された回答

KSSV
KSSV 2021 年 9 月 4 日
  2 件のコメント
md mayeen uddin
md mayeen uddin 2021 年 9 月 4 日
編集済み: md mayeen uddin 2021 年 9 月 4 日
This is giving me a precise answer but only for the last column of SigV. i want to Store values for the intersection of everz column. can it be possible?
__________________________________________________________________________
L1 = y( : ,1);
L2 = SigV;
Xf = zeros(length(SigV(1,:)),1);
Yxf =zeros(length(SigV(1,:)),1);
for i = length(SigV(1,:))
[yi(i),xi(i)] = polyxpoly(y(:,1),Tspan,SigV(:,i),tspan);
Xf(i,1) = xi(i);
Yxf(i,1) = yi(i);
end
md mayeen uddin
md mayeen uddin 2021 年 9 月 4 日
it works , thanks a lot KSSV.
for i =1: length(SigV(1,:))

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by