Skip to content

Remise du rapport de laboratoire 6 - #7

Open
oufog24 wants to merge 2 commits into
dpo-mth8408:mainfrom
oufog24:main
Open

oufog24 wants to merge 2 commits into
dpo-mth8408:mainfrom
oufog24:main

Conversation

@oufog24

@oufog24 oufog24 commented Aug 15, 2025

Copy link
Copy Markdown

Implémentation des fonctions de chaque question

Implémentation des fonctions de chaque question
Comment thread rapport.qmd Outdated
@github-actions

Copy link
Copy Markdown

Status:
Success--Here-is-the-PDF

Comment thread rapport.qmd

t *= beta
if t < 1e-10
return t, xt

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Est-ce une bonne chose ?

Comment thread rapport.qmd
x_prev .= x
t, x = armijo(f, gradf, x, C, alpha, beta)

diff = norm(x - x_prev, Inf)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

La mesure de stationnarité n'est pas la longueur du pas...

Comment thread rapport.qmd
println("Itérations: ", result.iterations)
println("Solution x*: ", round.(result.x, digits=5))
end

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Et la comparaison avec IPOPT ?

Comment thread rapport.qmd
end

return x
end

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

Comment thread rapport.qmd
function quadratic_example()
n = 10
Q = randn(n, n)
Q = Q' * Q

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

non convexe ...

Comment thread rapport.qmd
Traditionnellement, les problèmes de région de confiance sont résolus par des méthodes comme le **gradient conjugué tronqué**, qui utilisent la structure quadratique.
Cependant, notre approche par le **gradient projeté** offre plusieurs avantages :

- Contrairement au GCT, elle ne nécessite pas que \( B_k \) soit définie positive.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

non

Comment thread rapport.qmd
Cependant, notre approche par le **gradient projeté** offre plusieurs avantages :

- Contrairement au GCT, elle ne nécessite pas que \( B_k \) soit définie positive.
- La solution x* satisfait toujours \( \| x^{*} \| \leq \Delta \).

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

non plus

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants