Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing issue Issue174 related to implicit functions #279

Merged
merged 3 commits into from
Aug 3, 2021
Merged

Conversation

benaliabderrahmane
Copy link
Contributor

#implicit function:

the code was tested with the following examples:

fimplicit(@(x,y) x.^2 - y.^2 - 1)
fig2plotly(gcf,'offline',false);

##results:

101

f = @(x,y) x.^2 + y.^2 - 3;
fimplicit(f,[-3 0 -2 2])
fig2plotly(gcf,'offline',false);

102

f1 = @(x,y) x.^2 + y.^2 - 1;
fimplicit(f1,':r')

hold on
f2 = @(x,y) x.^2 + y.^2 - 2;
fimplicit(f2,'--g','LineWidth',2)
hold off
fig2plotly(gcf,'offline',false);

100

@benaliabderrahmane benaliabderrahmane linked an issue Aug 3, 2021 that may be closed by this pull request
@jackparmer jackparmer requested review from xarico10 and VolKa79 August 3, 2021 19:10
@xarico10 xarico10 merged commit 23e1ca1 into master Aug 3, 2021
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.

Plotting implicit functions using fimplicit not supported
3 participants