Frage


How can i find the dy/dx of the differantial equation
My differantial equation is 1/x*d/dx(x*dy/dx)=10. And my code is below. I can solve x, y but i can not solve dy/dx, how to fi...

mehr als 3 Jahre vor | 3 Antworten | 0

3

Antworten

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 3 Jahre vor

Beantwortet
Failure at t=0.000000e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (7.905050e-323) at time t.
I think the main problem is the value of L. Inf is not a good way to solve this problem. You should write largest positive float...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Runge-Kutta method
%RUNGE KUTTA METHOD OF ORDER FOUR clc;clear; % Clears the screen h=0.025; ...

mehr als 3 Jahre vor | 0

Frage


How can i find the minimum value of spline data
How can i find the minimum value of spline curve. My code is below: x=[0 0.34906585 0.698131701 1.047197551 1.396263402 1.7453...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to solve this ode problem
Boundary value problem x=0:0.1:3; Mm =[0 10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 190 200 180 16...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


ode,dsolve,spline,ode interp, differantial
x=[0:0.5:3] M=[0 1 4.5 12.75 25 41 62] dQ/dx=M How can i solve this diff equation. My code is below x=[0:0.5:3] M=[0 1 4.5...

mehr als 3 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


dsolve second order differential equation
I am working on second order diferantial question, y"=0.0008742 y(0)=0 , y(585.8)=150, My code is below syms y(x) eqn =...

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Mupad error, gui, handle function
My question is simple It is a programme about fluid kinematics, ux is edit text, refers ug(handles,x,y) vx, refers vg(handles...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Ode45 handles function error
My function ug data is got from edittext of GUI function ut = ug(handles, x, y) ut = handles.edit11.String evalc(ut) vg i...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Ode Eroor in GUI matlab....(Error using odearguments (line 90) @(X,Y)(VGUI+WYGUI)./(UGUI+WXGUI) must return a column vector.)
I am working on this project whic is about fluid kinematics in x an y axes and trying to set streamlines to the graph. I have ...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
how can i take the values from edit_text of gui to function
It is definetly good way. (practical). it works...thanks

mehr als 4 Jahre vor | 0

Frage


how can i take the values from edit_text of gui to function
I am writing a program for fluid kinematics. It is working, but i want to show in matlab gui. function ut=u(x,y); ut=3*x+y en...

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten