Community Profile

photo

PULAK Kumer


Last seen: ungefär 3 år ago Active since 2020

Statistics

  • Thankful Level 3
  • Explorer

View badges

Content Feed

View by

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

ungefär 3 år ago | 2 answers | 0

2

answers

Question


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

ungefär 3 år ago | 0 answers | 0

0

answers

Question


How can I solve this following problem? (overcome * mark)
My code is : %Start clear all clc %Input required values fprintf('***********************Gauss Jodern Elimination Method**...

ungefär 3 år ago | 1 answer | 0

1

answer

Question


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

ungefär 3 år ago | 0 answers | 0

0

answers

Question


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

mer än 3 år ago | 1 answer | 0

1

answer

Question


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

mer än 3 år ago | 1 answer | 0

1

answer

Question


How can i draw the graph of this two functions using matlab
<</matlabcentral/answers/uploaded_files/465650/received_840983989991360.jpeg>>

mer än 3 år ago | 1 answer | 0

1

answer

Question


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

mer än 3 år ago | 1 answer | 0

1

answer

Question


Please solve the following question
clc; clear all; fprintf('*************************************************************************************************');...

mer än 3 år ago | 1 answer | 0

1

answer

Question


Fprintf modification in matlab
How can i change the text's font size using fprintf?

mer än 3 år ago | 1 answer | 1

1

answer

Question


How can we do for following fprintf formating
How can i show power 2 of x in fprintf as general format?

mer än 3 år ago | 3 answers | 1

3

answers

Question


What is the problem for the following code?
clc; clear all; close all; fprintf('\n************************************************************'); fprintf('\n***...

mer än 3 år ago | 0 answers | 0

0

answers

Question


What is the problem for the following code?
clc; clear all; close all; fprintf('\n************************************************************'); fprintf('\n*** Interpola...

mer än 3 år ago | 1 answer | 0

1

answer

Answered
Please convert this c program into matlab code
What is the wrong for the following code: clc; clear all; close all; fprintf('\n**************************************...

mer än 3 år ago | 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...

mer än 3 år ago | 2 answers | 0

2

answers

Question


Diagonal forward difference table
Please help me for making diagonal forward difference table with matlab code

mer än 3 år ago | 0 answers | 0

0

answers

Question


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

nästan 4 år ago | 0 answers | 0

0

answers

Question


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

nästan 4 år ago | 0 answers | 0

0

answers