Feeds
提问
How to remove message from fsolve result
%Following code giving results with message clc clear options = optimset('Display','off'); f=@(x)[3*x(1)^3+x(1)^2-18; x(2)^3...
13 years 前 | 3 个回答 | 0
3
个回答提问
How to remove text from fsolve result
clc clear all f=@(x)[3*x(1)^3+x(1)^2-18; x(2)^3-5*x(2)^2+10]; x = fsolve(f,[0.001 0.001]) %RESULT as F...
13 years 前 | 3 个回答 | 2
3
个回答提问
I am simulating water level at every 1 minute interval from an event of rainfall. I am using Jacobian method of 5 row and 5 column
I am simulating a biorention swale wherein rainfall runoff is coming into catch basin and catch basin is connected to a pipe (up...
13 years 前 | 1 个回答 | 0