Sai Hitesh Gorantla
Followers: 0 Following: 0
Statistiques
RANG
151 840
of 294 599
RÉPUTATION
0
CONTRIBUTIONS
10 Questions
1 Réponse
ACCEPTATION DE VOS RÉPONSES
30.0%
VOTES REÇUS
0
RANG
of 20 131
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 152 091
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
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); ...
plus de 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Write a MATLAB program to plot the following:b. The magnitude of the electric field along the central axis of a uniformly charged circular disk of radium 1 m and charge density 1 C/m2. Assume that the disk is centred around the Z –axis.
Is my code is correct? code: %19BEE0151 sigma = 1; % in C/m^2 R = 1; % R in metres k = 9e9; n = input('Enter the va...
plus de 4 ans il y a | 1 réponse | 0
0
réponseQuestion
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...
plus de 4 ans il y a | 1 réponse | 0
0
réponseWrite a function called under_age that takes two positive integer scalar arguments: age that represents someone's age, and limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second arg
function [too_young] = under_age(age,limit) if nargin == 2 if age<limit too_young = true; else too...
plus de 4 ans il y a | 0
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...
plus de 4 ans il y a | 5 réponses | 0
5
réponsesQuestion
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...
plus de 4 ans il y a | 1 réponse | 0
1
réponseQuestion
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= ...
plus de 4 ans il y a | 1 réponse | 0
1
réponse0
réponseQuestion
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...
plus de 4 ans il y a | 1 réponse | 0
0
réponseQuestion
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...
presque 5 ans il y a | 1 réponse | 0