how to find intersect with 2 lines
5 Ansichten (letzte 30 Tage) Ältere Kommentare anzeigen JEEVITHA am 18 Nov. 2023 Verknüpfen Direkter Link zu dieser Frage https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines ⋮ Verknüpfen Direkter Link zu dieser Frage https://de.mathworks.com/matlabcentral/answers/2048902-how-to-find-intersect-with-2-lines Kommentiert: Sam Chak am 19 Nov. 2023 In MATLAB Online öffnen Ran in: find the points of intersection between ????^2+????^2=3 and ????????=1. Convert this into a system of two nonlinear algebraic equations.solve a system of two nonlinear algebraic equations using multivariable Newton-Raphson method with an initial guess of ????=1, ????=1. dx = 0.1;x = 0:0.1:5;f2=xy-1f1=x.^2+y.^2-3;y2 = 1×51 1.7321 1.7349 1.7436 1.7578 1.7776 1.8028 1.8330 1.8682 1.9079 1.9519 2.0000 2.0518 2.1071 2.1656 2.2271 2.2913 2.3580 2.4269 2.4980 2.5710 2.6458 2.7221 2.8000 2.8792 2.9597 3.0414 3.1241 3.2078 3.2924 3.3779figure(1)p = plot(x, y1, x, y2);p(1).LineStyle = "-.";p(2).LineWidth =...