photo

Taha Abbas Bin Rashid


Last seen: alrededor de 3 años hace Con actividad desde 2016

Followers: 0   Following: 0

Estadística

MATLAB Answers

12 Preguntas
0 Respuestas

CLASIFICACIÓN
224.316
of 301.204

REPUTACIÓN
0

CONTRIBUCIONES
12 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
50.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.191

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 173.368

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 3

Ver insignias

Feeds

Ver por

Pregunta


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)

alrededor de 3 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

casi 7 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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...

más de 7 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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))./...

alrededor de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


I have used two different methods for same problem and getting different plots
%----------------CODE - 1----------------------------- function second_order_ode clc clear t = 0...

casi 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

casi 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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)

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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 ...

casi 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Where Param is getting defined
function iflag = CSTR_SS_ex1(); % ask the user for the input parameters, which are % stored in a structure Param ...

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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; ...

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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 ...

casi 10 años hace | 1 respuesta | 0

1

respuesta