Akash Talapatra
Followers: 0 Following: 0
Statistiques
8 Questions
0 Réponses
RANG
200 085
of 295 712
RÉPUTATION
0
CONTRIBUTIONS
8 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
37.5%
VOTES REÇUS
0
RANG
of 20 274
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 359
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
How could I get the value of Z from the cubic equation here in Jupyter Notebook?
import pandas as pd fluid_data='fluid.csv' df1=pd.read_csv(fluid_data) df1.head(6) binary_coef='binary.csv' df2=pd.read_csv...
plus de 2 ans il y a | 1 réponse | 0
0
réponseQuestion
Why am I getting straight lines in the each plot instead of exponential curves?
clc clear load ore.txt; xx=size (ore,1) for k=1:xx G(k)=ore(k,1); R(k)=ore(k,2); end Gi=ore(1,1); Ri=ore(1,2); ...
plus de 2 ans il y a | 1 réponse | 0
1
réponse1
réponseQuestion
Can you help me out to solve this problem? Find one of the roots of the following system of equations without using fsolve method:
presque 3 ans il y a | 1 réponse | 0
0
réponseQuestion
What is the problem with that coding? Why it is showing that 'x' is unrecognized? I am new to learn matlab coding so frequently got stuck with coding.
x=10; for i=1:10 fn(1)=exp(-x(1)+x(2))-x(1)^2; fn(2)=sin(x(1))+cos(x(2)); x=x-fn(1)/fn(2) end
presque 3 ans il y a | 1 réponse | 0
1
réponseQuestion
What is the problem here to run this code? Can I run this code without using fsolve?
function fn=ex_sys_n(x); fn(1)=exp(-x(1)+x(2))-x(1)^2; fn(2)=sin(x(1))+cos(x(2)); clc; clear all; fun=@(x) ex_sys_nl(x); x...
presque 3 ans il y a | 1 réponse | 0
1
réponseQuestion
I am having a problem to run this code. It may not seem stopped when run. What's the solution?
g = @(f) 1/sqrt(f) + 2 * log10((RR)/3.7 + 2.51/(Re * sqrt(f))); x_lower=0.008; x_upper=0.0001; x_mid=(x_lower* x_upper)/2; w...
presque 3 ans il y a | 1 réponse | 0
1
réponseQuestion
Why it is saying this? Index in position 2 is invalid. Array indices must be positive integers or logical values. Error in Homework (line 21) surf(x,y,F(i,j))
x=[-5:5] y=[-5:5] for i=1:(x-1); for j=1:(y-1); if (x(i)>=0)&(y(j)>=0) F(i,j)=2.*x(i)+y(j)^2 end if (x(i)>=0)&(y(...
presque 3 ans il y a | 1 réponse | 0