Community Profile

photo

Amit kumar


Last seen: etwa ein Jahr vor Aktiv seit 2023

Followers: 0   Following: 0

Statistiken

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


I want to solve a simple "y=mx+c" with initial condition to find value of "m" and "c" but i am getting error by using following code. Any idea to tackle this kind of problem?
clc clear all close all syms a b x y=a*x+b cond1=y(0)== 1 cond2= y(1)== 0 conds=[cond1 cond2] y_1=solve(y,conds)

etwa ein Jahr vor | 1 Antwort | 0

1

Antwort

Frage


I am facing error while solving two 2nd order differential equation in which boundary condition are dependent to each other. Any idea where I am doing wrong??
clc clear all; close all; syms psi_1(z) syms psi_2(z) K1=1 K2=1 K3=1 Dpsi_1 = diff(psi_1); Dpsi_2 = diff(psi_2); %%%...

etwa ein Jahr vor | 2 Antworten | 0

2

Antworten