photo

Amit Bhowmick


Last seen: presque 2 ans il y a Actif depuis 2021

Followers: 0   Following: 0

Message

My area of interest is numerical methods in Engineering. Especially I do write code (Matlab, C, Jupiter Notebook, COMSOL-JAVA application building, and Fortran) to solve various deferential equations (IVP and BVP) using the finite element method, finite difference method, and others for my research work. I am interested to work on developing new code in my field.

Statistiques

All
  • Knowledgeable Level 2
  • Promoter
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
could anyone help me how to generate two different random numbers of same value.
Check the values you will alyas get zero that is they are not equal. More preciesly probability of getting same value is very le...

plus de 3 ans il y a | 0

Réponse apportée
A moving line plot between two points in MATLAB figure
For large number of iteration use loop accordingly. clearvars close all clc x1=0.1;y1=0.2; x2=0.3;y2=0.4; x3=0.5;y3=0.6;...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
Only returning NaNs when trying to do a double for loop
use this mean(sivTotEASE(m-1:m+1,n-1:n+1),"omitNan")

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Find a variable to make equation = 0
use fzero or fsolve to find the roots.

plus de 3 ans il y a | 0

Réponse apportée
plotting 3d graph
x = -100:25:100 ; y = 600:120:1500 ; [X, Y] = meshgrid(x, y); Z = 3 *X + 2 ./(Y); surf(X, Y, Z); fminx=min(abs(Z),[],1) fm...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Deleting specific numbers from a textfile
Try this and Adust output variable type as per your choice. clear all close all clc fid=fopen('experiment2.txt','r') ln...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to find tangent of a curve and find the distance from the centre?
If you have xdata ydata get the equation of the curve using cfit tools.

plus de 3 ans il y a | 0

Réponse apportée
draw graphs of the functions y=cost(x), y=x for 0<=x<=2 on the same window
clear all close all clc x=0:0.01:2; figure(1),plot(x,cost(x))%cost function as defined by you hold plot(x,x)

plus de 3 ans il y a | 0

Réponse apportée
Need help to find min(abs(dL==0)) for every column individually
Check it out dL =L2- L1; [dL_min,X_f]=min(abs(dL),[],1)

plus de 3 ans il y a | 0

Réponse apportée
Solving Discretized Multivariables System of ODEs
use pdepe

plus de 3 ans il y a | 0

Réponse apportée
HOW CAN I PLOT THIS?
Please check and confirm the correction clear all close all clc load('EXAMPLE.mat'); A=GIULIAMMEQ1.Var4%table2array(EXAMP...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
m files wont open 2019b
Contact the developer of tool box for license issue

plus de 3 ans il y a | 0

Réponse apportée
Can this differential equation be solved using matlab pdepe solver?
Look at this https://in.mathworks.com/help/matlab/math/partial-differential-equations.html

plus de 3 ans il y a | 0

Réponse apportée
Integration of functions of 1 and 2 vaiables
You can use dirac function to define, syms x f=dirac(x) intf=int(f,x) %Indefinite integration intfd=int(f,x,[a b] %definit...

plus de 3 ans il y a | 0

Réponse apportée
Display output of ODE45 after error
I dont know your equation but you can use similar trick tspan = [0 5]; y0 = 20; [t,y] = ode45(@fun, tspan, y0); plot(t,y,'-o...

plus de 3 ans il y a | 0

Réponse apportée
storing variables in a table and retrieving them 1 by 1
use this, Lat1=T.Lat(1) %T is the table name Lat1=T.Lat(2) To create table use, Lat=[v1 v2 v3 v4]%Put valuea here Long=[v1 ...

plus de 3 ans il y a | 0

Réponse apportée
How to create a matrix with a for- loop
Check with this n=3; B=zeros(n); for ii=1:n for jj=1:n B(ii,jj)=rem(ii,2); end end

plus de 3 ans il y a | 0

A résolu


Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...

plus de 3 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

plus de 3 ans il y a

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

plus de 3 ans il y a

A résolu


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

plus de 3 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

plus de 3 ans il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

plus de 3 ans il y a

Réponse apportée
Merging figures with subplots into a large figure with subplots
Hi Lars, I had written this code to extract data from a figure file. Hope few modification will work for you. clear all; clos...

plus de 3 ans il y a | 0

Réponse apportée
Error in defining symbolic function
Hope this will work close all; clear; clc; syms a b g(a,b) %Changes g = output(a,b); function out = output(a,b) fo...

plus de 3 ans il y a | 1

| A accepté