PULAK Kumer
Followers: 0 Following: 0
Statistiques
RANG
21 814
of 295 486
RÉPUTATION
2
CONTRIBUTIONS
17 Questions
1 Réponse
ACCEPTATION DE VOS RÉPONSES
29.41%
VOTES REÇUS
2
RANG
of 20 236
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 950
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
want to solve (d^2 y)/(dx^2 )+dy/dx-6y=0 using 4th order Runge-Kutta method with y(0) = 3 and y’(0) = 1
My code is : clc clear all h = 0.5; x = 1:h:5; y = zeros(2,length(x)); % y vector declaration y(1,1) = 3; % y value y(2...
presque 4 ans il y a | 2 réponses | 0
2
réponsesQuestion
How can we solve following problem? how can i use dsolve for like this case?
My MATLAB code is : clc,clear all syms x y k = input('required function:'); f=inline(k) a = input('Enter initial value...
presque 4 ans il y a | 1 réponse | 0
0
réponseQuestion
How can I solve this following problem? (overcome * mark)
My code is : %Start clear all clc %Input required values fprintf('***********************Gauss Jodern Elimination Method**...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
How can I draw the graph for this system of linear equation in MATLAB?
A=[1 2 4; 5 7 9; 10 11 12] B=[2;4;7] X=inv(A)*B Now what can I do to make the graph for this system of linear equation? I m...
presque 4 ans il y a | 1 réponse | 0
0
réponseQuestion
How can i solve following problems?
The code is : % Program Code of finding root in MATLAB created by Pulak clc,clear all syms x a=input('Enter the function in...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
what is the problem for the following commands in MATLAB?
m=input('Give integer value') fprintf('%.(%d)f',m,x(i)) Here , I want to show decimal value after point according to input...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
How can i draw the graph of this two functions using matlab
<</matlabcentral/answers/uploaded_files/465650/received_840983989991360.jpeg>>
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
please explain the following loop with each line working details
C=d(n,n); fork=n-1:-1:1 C=conv(C,poly(x(k))); m=length(C); C(m)=C(m)+d(k,k); end here ,d is an array varibal...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Please solve the following question
clc; clear all; fprintf('*************************************************************************************************');...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Fprintf modification in matlab
How can i change the text's font size using fprintf?
presque 4 ans il y a | 1 réponse | 1
1
réponseQuestion
How can we do for following fprintf formating
How can i show power 2 of x in fprintf as general format?
presque 4 ans il y a | 3 réponses | 1
3
réponsesQuestion
What is the problem for the following code?
clc; clear all; close all; fprintf('\n************************************************************'); fprintf('\n***...
presque 4 ans il y a | 1 réponse | 0
0
réponseQuestion
What is the problem for the following code?
clc; clear all; close all; fprintf('\n************************************************************'); fprintf('\n*** Interpola...
presque 4 ans il y a | 1 réponse | 0
1
réponsePlease convert this c program into matlab code
What is the wrong for the following code: clc; clear all; close all; fprintf('\n**************************************...
presque 4 ans il y a | 0
Question
Please convert this c program into matlab code
#include<stdio.h> #include<math.h> int main() { float x[10],y[15][15]; int n,i,j; printf("Enter n : "); s...
presque 4 ans il y a | 2 réponses | 0
2
réponsesQuestion
Diagonal forward difference table
Please help me for making diagonal forward difference table with matlab code
presque 4 ans il y a | 1 réponse | 0
0
réponseQuestion
How can i solve the following wave equation analytically in matlab with plot and animation(2D plot and 3D plot)?
D(u(x,t),t,t)=c^2*D(u(x,t),x,x); Where u(x,0)=f(x),D[2](u)(x,0)=g(x),u(0,t)=0=u(L,t),L=2,c=4 and f(x) is arbitrary function an...
plus de 4 ans il y a | 1 réponse | 0
0
réponseQuestion
how can i solve the following wave equation analytically and plot figure)?
D(u(x,t),t,t)=c^2*D(u(x,t),x,x); Where u(x,0)=f(x),D[2](u)(x,0)=g(x),u(0,t)=0=u(L,t),L=2 here D[2](u) (x,0) means two time...
plus de 4 ans il y a | 1 réponse | 0