Whole derivation of two variable differential function
18 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am struggleing with the whole derivation of differential equation.
Can y'all give me an advice how to implement that into a code?
I've tried using diff() but diff(f(x,y), y) gives 1 not y'.
0 Commenti
Risposte (2)
James Tursa
il 22 Giu 2022
Please show the code you are using.
y' means derivative of y with respect to x, not derivative of y with respect to y. You should be taking derivative of f(x,y) with respect to x, not y.
2 Commenti
Walter Roberson
il 22 Giu 2022
Is there any way to get a whole derivative rather than a partial derivative?
syms x y
f = y - x^3 + x + 1
dy = f
df = diff(f, x) + diff(f, y)
simplify(subs(df, diff(y,x), dy))
You may notice that this is not what you wanted... but it satisfies at least one plausible definition of what a "whole derivative" means.
I recommend that you re-examine that derivative provided. I think you will find that it makes no sense unless it is the derivative with respect to x with the assumption that y is a function of x
Walter Roberson
il 22 Giu 2022
The equations are being careless about which variables depend on which variables, and on which variable the differentiation is with respect to.
syms x y(x)
f = y - x^3 + x + 1
dy = f
df = diff(f, x)
simplify(subs(df, diff(y,x), dy))
2 Commenti
Walter Roberson
il 22 Giu 2022
Plug what values into y(x) ?
syms x y(x) yx
f = y - x^3 + x + 1
dy = f
df = diff(f, x)
sol = simplify(subs(subs(df(x), diff(y,x), dy), y, yx))
[X, Y] = ndgrid(linspace(-1, 1, 15));
solgrid = double(subs(sol, {x, yx}, {X, Y}));
whos
surf(X, Y, solgrid)
Vedere anche
Categorie
Scopri di più su Calculus in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!