Find intersection point between two plotted lines (2024)

7 Ansichten (letzte 30 Tage)

Ältere Kommentare anzeigen

Mark Sc am 18 Apr. 2023

  • Verknüpfen

    Direkter Link zu dieser Frage

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines

  • Verknüpfen

    Direkter Link zu dieser Frage

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines

Bearbeitet: Star Strider am 18 Apr. 2023

  • data_tangent.xlsx

In MATLAB Online öffnen

Hi all,

I have been trying to find an intersection point between two plotted lines however, I used several functions but it doesnot work.. usually the output is 2*0 empty double matrix ... Actually i need the number of intersection ... ?

here is the code and attached are the data

clearvars

clc;

close all

Data = readmatrix('data_tangent.xlsx')

x = Data(:,1);

y = Data(:,2);

[ymax,idx] = max(y);

Binit = x(1:5) \ y(1:5)

Bymax = x(idx) \ y(idx)

Line_init = x*Binit;

Line_initv = Line_init <= ymax;

Line_ymax = x*Bymax;

Line_ymaxv = Line_ymax <= ymax;

figure

plot(x, y)

hold on

plot([0;x(Line_ymaxv)], [0;Line_ymax(Line_ymaxv)], '-r')

hold off

grid

axis('equal')

xlabel('X')

ylabel('Y')

axis([0 max(x) 0 max(y)])

x1=x(Line_ymaxv)

y1=Line_ymax(Line_ymaxv)

P=InterX([x;y],[x1;y1])

The function i used is from "https://www.mathworks.com/matlabcentral/fileexchange/22441-curve-intersections"

0 Kommentare

-2 ältere Kommentare anzeigen-2 ältere Kommentare ausblenden

Melden Sie sich an, um zu kommentieren.

Melden Sie sich an, um diese Frage zu beantworten.

Antworten (2)

Star Strider am 18 Apr. 2023

  • Verknüpfen

    Direkter Link zu dieser Antwort

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#answer_1218238

  • Verknüpfen

    Direkter Link zu dieser Antwort

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#answer_1218238

The code I wrote for your previous post, Plot tangent line on part of the curve is designed as requested to have only one intersection, that being at the origin, since both tangent lines were requested to go through the origin, at least as I understood it.

How else would you want to define the two tangent lines?

2 Kommentare

Keine anzeigenKeine ausblenden

Mark Sc am 18 Apr. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711153

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711153

@Star Strider

Thank you for your feedback,

just one intersect point thats' what I wanna ...

I just wanna a code to let me know the intersection point value

Thank you once again

Star Strider am 18 Apr. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711163

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711163

Bearbeitet: Star Strider am 18 Apr. 2023

In MATLAB Online öffnen

  • data_tangent.xlsx

My pleasure!

The two lines I plotted (only one is shown here) both intersect at the origin, since that is how they were requested and designed. The intersection with the curve is designed to be at ‘ymax’ with the x-coordinate of that intersection being ‘x(idx)’, so nothing further needs to be computed.

% clearvars

% clc;

% close all

format long

Data = readmatrix('data_tangent.xlsx')

Data = 13042×2

1.980321668300000 7.370000000000000 1.982328936500000 7.350000000000000 1.985318034200000 7.380000000000000 1.987310766000000 7.400000000000000 1.990343472900000 7.310000000000000 1.993270790900000 7.510000000000000 1.995263522700000 7.530000000000000 1.997299863700000 7.430000000000000 2.000270790900000 7.510000000000000 2.002187206600000 7.740000000000000

x = Data(:,1);

y = Data(:,2);

[ymax,idx] = max(y);

Binit = x(1:fix(idx/4)) \ y(1:fix(idx/4))

Binit =

3.644815761434447

Bymax = x(idx) \ y(idx)

Bymax =

3.216013064246002

Line_init = x*Binit;

Line_initv = Line_init <= ymax;

Line_ymax = x*Bymax;

Line_ymaxv = Line_ymax <= ymax;

Intersection_x = interp1(Line_init-Line_ymax, x, 0, 'linear','extrap')

Intersection_x =

2.273736754432321e-13

Intersection_y = interp1(x, Line_init, Intersection_x, 'linear','extrap')

Intersection_y =

9.094947017729282e-13

Intersection = [Intersection_x, Intersection_y] % Desired Result

Intersection = 1×2

1.0e-12 * 0.227373675443232 0.909494701772928

figure

plot(x, y)

hold on

plot([0;x(Line_ymaxv)], [0;Line_ymax(Line_ymaxv)], '-r')

plot([0;x(Line_initv)], [0;Line_init(Line_initv)], '-r')

hold off

grid

axis('equal')

xlabel('X')

ylabel('Y')

axis([0 max(x) 0 max(y)])

Find intersection point between two plotted lines (5)

% x1=x(Line_ymaxv)

% y1=Line_ymax(Line_ymaxv)

% P=InterX([x;y],[x1;y1])

EDIT — (18 Apr 2023 at 20:03)

Added ‘Intersection’ calculation and result using interp1 to calculate the coordinates.

.

Melden Sie sich an, um zu kommentieren.

Cameron am 18 Apr. 2023

  • Verknüpfen

    Direkter Link zu dieser Antwort

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#answer_1218263

  • Verknüpfen

    Direkter Link zu dieser Antwort

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#answer_1218263

Bearbeitet: Cameron am 18 Apr. 2023

In MATLAB Online öffnen

Looks like a stress-strain curve. Depending on the material, you could adjust the variable I named cutoff to 0.3*ymax or whatever you want. This code takes the first intersection of the stress-strain curve and interpolates the value for yield.

clearvars

clc;

close all

Data = readmatrix('data_tangent.xlsx')

x = Data(:,1);

y = Data(:,2);

[ymax,idx] = max(y);

Binit = x(1:5) \ y(1:5);

Bymax = x(idx) \ y(idx);

Line_init = x*Binit;

Line_initv = Line_init <= ymax;

Line_ymax = x*Bymax;

Line_ymaxv = Line_ymax <= ymax;

Line_y = Line_ymax(Line_ymaxv);

trunc_x = x(1:find(Line_ymaxv,1,'last'));

trunc_y = y(1:find(Line_ymaxv,1,'last'));

ii = length(trunc_y);

cutoff = 0.5*ymax; %you can adjust this

SaveMe = [];

while trunc_y(ii) > cutoff

if (Line_y(ii) > trunc_y(ii) && Line_y(ii-1) <= trunc_y(ii-1)) | ...

(Line_y(ii) < trunc_y(ii) && Line_y(ii-1) >= trunc_y(ii-1))

SaveMe = [SaveMe;ii];

end

ii = ii - 1;

end

m1 = polyfit(x(SaveMe(end)-1:SaveMe(end)),y(SaveMe(end)-1:SaveMe(end)),1);

m2 = polyfit(x(SaveMe(end)-1:SaveMe(end)),Line_y(SaveMe(end)-1:SaveMe(end)),1);

x_cross = (m2(2) - m1(2))/(m1(1) - m2(1));

y_cross = m1(1)*x_cross + m1(2);

figure

plot(x, y)

hold on

plot([0;x(Line_ymaxv)], [0;Line_ymax(Line_ymaxv)], '-r')

scatter(x_cross,y_cross,'filled')

grid

axis('equal')

xlabel('X')

ylabel('Y')

axis([0 max(x) 0 max(y)])

hold off

3 Kommentare

1 älteren Kommentar anzeigen1 älteren Kommentar ausblenden

Mark Sc am 18 Apr. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711148

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711148

Bearbeitet: Mark Sc am 18 Apr. 2023

@Cameron

Thank you for your answer,

I meant if I already have a two lines plotted so I just wanna know the point of intersection ..

So would you able to help me ?

Thank you very much

Cameron am 18 Apr. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711168

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711168

The answer is in the code I provided as x_cross and y_cross.

Mark Sc am 18 Apr. 2023

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711233

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/1949258-find-intersection-point-between-two-plotted-lines#comment_2711233

@Cameron

Thank you Cameron, but what If I already have my own x and y

x1_y1 as arrays.....

I would appreciate if I can just enter these arrays and got the point of intersection..

Thanks,

Melden Sie sich an, um zu kommentieren.

Melden Sie sich an, um diese Frage zu beantworten.

Siehe auch

Kategorien

MATLABApp BuildingDevelop Apps Using App Designer

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Tags

  • vectorization
  • plot
  • array
  • find

Community Treasure Hunt

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

Start Hunting!

Es ist ein Fehler aufgetreten

Da Änderungen an der Seite vorgenommen wurden, kann diese Aktion nicht abgeschlossen werden. Laden Sie die Seite neu, um sie im aktualisierten Zustand anzuzeigen.


Translated by Find intersection point between two plotted lines (10)

Find intersection point between two plotted lines (11)

Website auswählen

Wählen Sie eine Website aus, um übersetzte Inhalte (sofern verfügbar) sowie lokale Veranstaltungen und Angebote anzuzeigen. Auf der Grundlage Ihres Standorts empfehlen wir Ihnen die folgende Auswahl: .

Sie können auch eine Website aus der folgenden Liste auswählen:

Amerika

  • América Latina (Español)
  • Canada (English)
  • United States (English)

Europa

  • Belgium (English)
  • Denmark (English)
  • Deutschland (Deutsch)
  • España (Español)
  • Finland (English)
  • France (Français)
  • Ireland (English)
  • Italia (Italiano)
  • Luxembourg (English)
  • Netherlands (English)
  • Norway (English)
  • Österreich (Deutsch)
  • Portugal (English)
  • Sweden (English)
  • Switzerland
    • Deutsch
    • English
    • Français
  • United Kingdom(English)

Asien-Pazifik

  • Australia (English)
  • India (English)
  • New Zealand (English)
  • 中国
  • 日本Japanese (日本語)
  • 한국Korean (한국어)

Kontakt zu Ihrer lokalen Niederlassung

Find intersection point between two plotted lines (2024)

References

Top Articles
TV Schedule for Cozi TV (KPHO-TV2) Phoenix, AZ
TV Schedule for Cozi TV (KTAZ3) Phoenix, AZ
Srtc Tifton Ga
Wannaseemypixels
More Apt To Complain Crossword
2021 Tesla Model 3 Standard Range Pl electric for sale - Portland, OR - craigslist
Www.paystubportal.com/7-11 Login
Busty Bruce Lee
Oro probablemente a duna Playa e nomber Oranjestad un 200 aña pasa, pero Playa su historia ta bay hopi mas aña atras
Insidekp.kp.org Hrconnect
Cvs Appointment For Booster Shot
Noaa Duluth Mn
Violent Night Showtimes Near Century 14 Vallejo
Chase Bank Pensacola Fl
Nesb Routing Number
Troy Gamefarm Prices
پنل کاربری سایت همسریابی هلو
Turbo Tenant Renter Login
Impact-Messung für bessere Ergebnisse « impact investing magazin
Panolian Batesville Ms Obituaries 2022
O'reilly's In Mathis Texas
Alternatieven - Acteamo - WebCatalog
Fairwinds Shred Fest 2023
60 Second Burger Run Unblocked
Kltv Com Big Red Box
JD Power's top airlines in 2024, ranked - The Points Guy
Lil Durk's Brother DThang Killed in Harvey, Illinois, ME Confirms
Uhaul Park Merced
Hell's Kitchen Valley Center Photos Menu
LoL Lore: Die Story von Caitlyn, dem Sheriff von Piltover
Santa Clara County prepares for possible ‘tripledemic,’ with mask mandates for health care settings next month
Craigslist Central Il
Parent Portal Pat Med
Poe Self Chill
Studentvue Calexico
Mauston O'reilly's
Theater X Orange Heights Florida
Rise Meadville Reviews
Pickwick Electric Power Outage
Gt500 Forums
The Blackening Showtimes Near Ncg Cinema - Grand Blanc Trillium
Dicks Mear Me
Bf273-11K-Cl
Stephen Dilbeck, The First Hicks Baby: 5 Fast Facts You Need to Know
The 13 best home gym equipment and machines of 2023
Product Test Drive: Garnier BB Cream vs. Garnier BB Cream For Combo/Oily Skin
What Does the Death Card Mean in Tarot?
Treatise On Jewelcrafting
Sml Wikia
Bluebird Valuation Appraiser Login
Epower Raley's
Qvc Com Blogs
Latest Posts
Article information

Author: Reed Wilderman

Last Updated:

Views: 6125

Rating: 4.1 / 5 (72 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Reed Wilderman

Birthday: 1992-06-14

Address: 998 Estell Village, Lake Oscarberg, SD 48713-6877

Phone: +21813267449721

Job: Technology Engineer

Hobby: Swimming, Do it yourself, Beekeeping, Lapidary, Cosplaying, Hiking, Graffiti

Introduction: My name is Reed Wilderman, I am a faithful, bright, lucky, adventurous, lively, rich, vast person who loves writing and wants to share my knowledge and understanding with you.