photo

Taha Abbas Bin Rashid


Last seen: etwa 3 Jahre vor Aktiv seit 2016

Followers: 0   Following: 0

Statistik

MATLAB Answers

12 Fragen
0 Antworten

RANG
170.172
of 301.175

REPUTATION
0

BEITRÄGE
12 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
50.0%

ERHALTENE STIMMEN
0

RANG
 of 21.185

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 173.200

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 3

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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)

etwa 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 7 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

etwa 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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)

fast 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

fast 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 10 Jahre vor | 1 Antwort | 0

1

Antwort