
KSSV
https://sites.google.com/site/kolukulasivasrinivas/ Professional Interests: Mathematical Computing
Python, MATLAB, Fortran
Spoken Languages:
English, Hindi, Telugu
Statistics
RANK
7
of 262.711
REPUTATION
24.313
CONTRIBUTIONS
19 Questions
10.720 Answers
ANSWER ACCEPTANCE
78.95%
VOTES RECEIVED
2.970
RANK
104 of 17.985
REPUTATION
9.919
AVERAGE RATING
4.60
CONTRIBUTIONS
30 Files
DOWNLOADS
282
ALL TIME DOWNLOADS
92636
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
How to plot this ellipse
syms s1 s2 t = 0 ; eqn = s1^2-15.156*s1*s2+229.7*s2^2+488.8*t^2+6844000*s2==4.752*10^10 ; fimplicit(eqn,[-600000 200000 -100...
ongeveer 23 uur ago | 1
Integrate a polyfit-polyval in matlab, I would appreciate any input. I want to calculate the integral of the sine function from a trend li
%% Integration p2=polyfit(X,Y,4); fun = @(x) p2(1)*x.^4+p2(2)*x.^3+p2(3)*x.^2+p2(4)*x+p2(5) ; % using p2 from polyfit val =...
1 dag ago | 0
| accepted
solve equation numerically 1=(1/y)x*exp(x*y)
syms x y f = 1==1/y*x*exp(x*y) solve(f,x) solve(f,y)
2 dagen ago | 0
How to remove leading zeros in decimal representation?
A = [23, 15, 256, 75]; B= dec2bin(A) strip(string(B),'left','0')
2 dagen ago | 1
| accepted
I want to select an Excel file by it's extension
%% Here only 1 Excel file will be present in ComparySummary folder. And I want select that Excel file with FilePath %% FilePath...
2 dagen ago | 0
How to retrieve the specific rows with all the columns in the dataset?
I hope the dataset is in the form of a table. So your table is going to be of size 2832x4. idx = T.Time==1.5 ; T1 = T(idx,:) ...
2 dagen ago | 0
| accepted
Terrain Elevation Data (Contour - Level Curve)
Load the kml file. This will be your boundary. Load the geotiff file. Make the necessary spatial coordinates using meshgrid U...
2 dagen ago | 0
How would I detect gray/white pixels in a picture?
REad about find. Gve the pixle value as zero and use find. This will give you the indices. [y,x] = find(I==0) ; % I is gray i...
4 dagen ago | 0
scatteredInterpolant function is providing too much noise in interpolation
Read about griddata. Also explores the methods in these interpolations. Go for the method nearest.
5 dagen ago | 0
Ploting or seeing 3/4D Weather Data NC4 file in MATLAB
pcolor can be worked on only a matrix. You var3 is a 3D matrix. pcolor(var1,var2,var3(:,:,i)) ; % where i = 1,2,.....744 Also...
5 dagen ago | 0
| accepted
how to crop a size of 25x20 from a image if centre coordinates are known
Let (x,y) be your center pixl locations. iwant = imcrop(I,[x-10 y-10 20 20]) ;
7 dagen ago | 0
How to plote the stress for each element in the mesh with a color map.
Refer this: https://in.mathworks.com/matlabcentral/fileexchange/32719-postprocessing-in-fem
8 dagen ago | 0
How to plot this type of function?
t = linspace(-5,5) ; x = exp(t) ; y = 1-exp(-t) ; z = atan2(y,x) ; plot(t,z)
8 dagen ago | 0
different outputs for same input in every run
%%%%%%%%% rng(1) find_kmeans=kmeans(data(:,1),2); data_2=table(data(:,1),find_kmeans(:)); data_2.Properties.VariableNa...
8 dagen ago | 0
| accepted
Need help in plotting current and conductance
You need to initialize the arrays before loop for speed and to store the values into an array. NOTE: Check the last values of ...
9 dagen ago | 1
| accepted
choose the limit of two y axes
x = linspace(0,25); y = sin(x/2); yyaxis left ; plot(x,y,'k'); ax(1) = gca ; r = x.^2/2; yyaxis right plot(x,r); ax(2)...
9 dagen ago | 1
Can somebody assist me with the Mathlab source code to plot 9x9 grids and place sensors in each grid?
x = 1:9 ; y = 1:9 ; [X,Y] = meshgrid(x,y) ; figure hold on plot(X,Y,'r',X',Y','r',X,Y,'.k')
9 dagen ago | 0
How do I insert a 1x1 cell array consisting of one vector into a table?
coordinates = [2,2,2,2,2]'; % single row vector T = table(coordinates)
9 dagen ago | 0
locally weighted least square regresion
t = linspace(0,2*pi) ; y = sin(t) ; p = polyfit(t,y,3) ; xi = linspace(t(1),t(end)) ; yi = polyval(p,xi) ; plot(t,y,'r',xi,...
9 dagen ago | 0
if condition picking certain day of week
thedates = (datetime(2022,01,1):datetime(2022,1,31))'; d = day(thedates,'name') ; idx = ismember(d,{'Monday','Thursday'}) ; d...
9 dagen ago | 1
Randomly shuffle folder of images and save it
imgFiles = dir('*.jpg') ; N = length(imgFiles) ; n = randsample(1:10,N) ; % you can out your limits here for i = N I...
9 dagen ago | 1
| accepted
switch case not recognizing input
user_input=input('Enter the mineral name: ') ; switch user_input case 'magnetite' fprintf('Mineral:Magnetite \n ...
9 dagen ago | 0
| accepted
How to concatenate multiple .mat files and generate a 3D matrix?
matFiles = dir('*.mat') ; N = length(matFiles) ; iwant = zeros(3048,43,N) ; for i = 1:N S = matfile(matFiles(i).name) ...
9 dagen ago | 0
without writing any data, I want to create blank excel file.
T = table ; % create empty table fname = 'test.xlsx' ; % here you can give path as well writetable(T,fname) ; % create ...
9 dagen ago | 0
| accepted
Read multiple excel files
xlFiles = dir('*.xlsx') ; N = length(xlFiles) ; for i = 1:N thisFile = xlFiles(i).name ; T = readtable(thisFile) ; ...
10 dagen ago | 0
| accepted
3D plot of Latitude, Longitude and Depth while the colour of the points represent earthquake magnitude
scatter3(long,lat,Depth,[],Depth,'filled')
10 dagen ago | 0
| accepted
Computing the determinant of a block matrix
A = rand(2) ; B = rand(2) ; C = rand(2) ; D = rand(2) ; M = [A B; C D] ; det(M) det(A)*det(D-C*inv(A)*B) In your case, D...
11 dagen ago | 1
| accepted
find elemets of matrix based on logical conditions
points=readtable('points.txt'); points=table2array(points); x_p=points(:,1); y_p=points(:,2); z_p=points(:,3); t_p=points...
11 dagen ago | 0
| accepted