photo

Sai Hitesh Gorantla


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

10 Questions
1 Answer

RANK
112,581
of 299,168

REPUTATION
0

CONTRIBUTIONS
10 Questions
1 Answer

ANSWER ACCEPTANCE
30.0%

VOTES RECEIVED
0

RANK
 of 20,660

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 163,577

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • First Answer
  • Thankful Level 1

View badges

Feeds

View by

Question


MATLAB program to compute the potential in a square region by solving Laplace’s equation using the Finite Difference (FD) approximation method.using the “surf” and “contour” MATLAB commands
My Code: clear all; [X,Y] = meshgrid(linspace(0,1,20)); V = zeros(size(X)); [M,N] = size(V); V(2:M-1,1) = zeros(M-2,1); ...

5 years ago | 1 answer | 0

1

answer

Question


Finite Difference Method (FDM)

5 years ago | 0 answers | 0

0

answers

0

answers

Question


Write a MATLAB program to plot the following: a. The magnitude of the electric field along the central axis of a uniformly charged circular ring of radium 1 m and charge density 1 C/m. Assume that the ring is centred around the Z –axis.
Is my code is correct? Code: lambda = 1; R = 1; k = 9e9; n = input('Enter the value of z:'); z = -n:1:n; E = ((2*pi*k*lam...

5 years ago | 0 answers | 0

0

answers

Question


Variable Number of Input Arguments
My code: function [too_young] = under_age(age,limit) if age<21 too_young = true; else too_young = false; end if a...

5 years ago | 5 answers | 0

5

answers

Question


converts a point in cartesian to cylindrical and spherical cooridantes(error:getting same answer in cylindrical & spherical coordinates)
code: function [Pcyl Psph] = cart2cylsph(Pcart) % converts a point in cartesian to cylindrical and spherical cooridantes % in...

5 years ago | 1 answer | 0

1

answer

Question


cart to cyl (getting error of Not enough input arguments.)
function [Pcyl] = cart2cyl(Pcart) % input and output as 3 by 1 vectors x=Pcart(1); y = Pcart(2); z= Pcart(3); rho= ...

5 years ago | 1 answer | 0

1

answer

Question


the Trapezoidal rule for approximate integration

5 years ago | 0 answers | 0

0

answers

Question


Cart to cyl and spherical
Write a MATLAB program to accept the Cartesian coordinates of a point as a 3 by 1 column vector and return the Cylindrical and S...

5 years ago | 0 answers | 0

0

answers

Question


Hi, check this question
Two 1 nC point positive charges are located at (-1, 0, 0) m and (1, 0, 0) m respectively. Write a MATLAB script to plot the magn...

5 years ago | 1 answer | 0

1

answer