Statistiques
12 Questions
0 Réponses
RANG
170 172
of 301 175
RÉPUTATION
0
CONTRIBUTIONS
12 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
50.0%
VOTES REÇUS
0
RANG
of 21 185
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 173 238
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
MATLAB R2022b is not giving the exact answer of this definite integral. What modification is required?
clc clear syms x y = cos(3*x) + tan(x) + (tan(x)).^4 + 1./cos(36*x) y = int(y,0,pi/3)
environ 3 ans il y a | 1 réponse | 0
1
réponseQuestion
How to vectorize this code?
clear clc tic %concentration %[M]=x1 [C]=x2 [Dr]=x3 [Cx]=x4 [R^o]=x5 [Rm^o]=x6 [Pr]=x7 x=[100 1 1 0 0 0 0]; v=1e-18; % co...
presque 7 ans il y a | 1 réponse | 0
0
réponseQuestion
This code is not indexing values of x and y in .mat file
clc clear format compact for i = 0:9; x = (i*1000)+1:(i+1)*1000; y=x.^2; c = matfile('rutrackerr.mat...
plus de 7 ans il y a | 1 réponse | 0
1
réponseQuestion
This code only plot for last value of r1, how to plot for all values of r1
clc clear format longg for r1 = 0:.1:1; r2 = 1-r1; f1 = 0:0.1:1; f2 = 1-f1; F1 = ((r1.*f1.^2)+(f1.*f2))./...
environ 8 ans il y a | 2 réponses | 0
2
réponsesQuestion
I have used two different methods for same problem and getting different plots
%----------------CODE - 1----------------------------- function second_order_ode clc clear t = 0...
plus de 8 ans il y a | 1 réponse | 0
1
réponseQuestion
I am getting following error. "??? Error using ==> plot Conversion to double from sym is not possible."
clc clear syms x y y = Dsolve('Dy = (x^3 - 5*y + 3*x)/x','x') pretty(y) % num2str(x) xx = 1:.01:3; yy = s...
presque 9 ans il y a | 1 réponse | 0
1
réponseQuestion
How to integrate this function from E to 0 (i-e direct Integral), (k, Cao, Cbo, Cqo, va, vb, vq, E all being variables)?
clc clear syms k Cao Cbo Cqo va vb vq E int(1/(k*(Cao + va*E)*(Cbo + vb*E)*(Cqo + vq*E)),E)
presque 10 ans il y a | 1 réponse | 0
1
réponseQuestion
How to convert this code into Newton Raphson Method, Since 'Cd' is variable. How to calculate derivative of vt used in Newton Raphson Method?
clc clear vt = 1; err = 1; g = 9.8; rho_p = 7860; rho = 1.23; Dp = .5/1000; mu = 1.79e-5; % Cd ...
presque 10 ans il y a | 1 réponse | 0
0
réponseQuestion
Where Param is getting defined
function iflag = CSTR_SS_ex1(); % ask the user for the input parameters, which are % stored in a structure Param ...
presque 10 ans il y a | 1 réponse | 0
1
réponseQuestion
Can anyone explain me what is x(2) and x(1) in Line 09 & 10 respectively?
function second_order_ode clc clear t = 0:0.5:3; % time scale initial_x = 0; initial_dxdt = 0; [t,x] = ode45...
presque 10 ans il y a | 1 réponse | 0
1
réponseQuestion
for loop is not giving answer through iterations? But if I put value of O=0.1236 (which is the exact answer), it gives answer........ Why?
clc clear %****************************Input******************************** Pr= 320; pm1=3.8976*10^-7; ...
presque 10 ans il y a | 1 réponse | 0
1
réponseQuestion
How to get all values S and t in same matrix m?
clc clear for S=1:0.1:10; t=1.1346*log((-0.6*S)+7)-(0.0651*log(S)); if t>=0 S; t; m=[t ...
presque 10 ans il y a | 1 réponse | 0
