
KSSV
https://sites.google.com/site/kolukulasivasrinivas/ Professional Interests: Mathematical Computing
Python, MATLAB, Fortran
Spoken Languages:
English, Hindi, Telugu
Statistics
RANK
7
of 260,024
REPUTATION
23,839
CONTRIBUTIONS
19 Questions
10,552 Answers
ANSWER ACCEPTANCE
78.95%
VOTES RECEIVED
2,906
RANK
105 of 17,884
REPUTATION
9,873
AVERAGE RATING
4.60
CONTRIBUTIONS
30 Files
DOWNLOADS
375
ALL TIME DOWNLOADS
92226
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
How can I recode certain values in one vector based on those in another?
Vector1 = [29, 59, 94, 133, 169, 207, 243, 281, 317, 356, 392, 431, 469, 505, 543]'; Vector2 = [44, 74, 120, 148, 184, 227, 269...
19 hours ago | 0
| accepted
Different colors in Histogram (MATLAB)
Iter=[30 55 64 130 186 432]; SNR=[9 8 8 9.3 6 6.7]; color = {'r','b','g','y','m','k'} ; figure hold on for i = 1:length(It...
1 day ago | 1
| accepted
How to define two dimension longitude, latitude and variable for saving data in netcdf format?
lon=rand(406,271); lat=rand(406,271); var=rand(406,271); [nx,ny] = size(lon) ; % nc filename to be written file = 'myfile....
1 day ago | 0
Ho to find the interception
The best you can use is: https://in.mathworks.com/matlabcentral/fileexchange/22441-curve-intersections
1 day ago | 1
how to make colormap and color bar from ansys to like out in matlab
Try the below after pcolor. cmap = jet(10) ; colormap(cmap) caxis([85 100]) % mention your limits
1 day ago | 0
Reduce edgewidth in trisurf plot
x = rand(100,1) ; y = rand(100,1) ; dt = delaunayTriangulation(x,y) ; t = dt.ConnectivityList ; p = dt.Points ; d = sqr...
1 day ago | 0
| accepted
Delete rows in a string array, if they just contain zeros
I hope, your data is in a file. T = readtable(myfile) ; T(T.(2)==0,:) = [] ;
1 day ago | 0
how to remove values below 0.1?
If P is your array if size 1x27331. P(P<0.1) = NaN ;
1 day ago | 0
| accepted
How to plot these two plots in a single figure and using both y axis?
Read about yyaxis
1 day ago | 0
How to fill polygons based on attribute values?
How about this? shpFile = 'Expot.shp' ; S = shaperead(shpFile) ; N = length(S) ; cmap = jet(N) ; figure hold on for...
2 days ago | 0
Is there a way to write values where the last digits of the value are the ones that separate them, but only use 6 digits, plus the exponent?
Read about format and fprintf
3 days ago | 0
I want to plot between "W" on y axis and "r" on x axis, with "W" ranging from 0 to 0.2 in the interval of 0.05 and "r" ranging from 1 to 6 in the interval of 1. How to do it?
Use: fplot(W(r))
3 days ago | 0
| accepted
How can I output only part of a array?
FileName = ['114_1688','.jpg'] ; saveas(gcf,FileName)
3 days ago | 0
how to give value stress from excel give color in my mesh
You can coonsider using this package: https://in.mathworks.com/matlabcentral/fileexchange/32719-postprocessing-in-fem
3 days ago | 0
| accepted
How to generate series by percentage difference using loop?
A = zeros([],1) ; A(1) = 60 ; dA = 1 ; i = 1 ; while dA > 0.01 i = i+1 ; A(i) = A(i-1)*0.99 ; dA = abs(A(...
3 days ago | 0
| accepted
How to make the following code valid for tables not only matrices
Convert the Table into array using table2array. You can extract any column from table T using T.(1), T.(2) etc....
3 days ago | 0
Can anyone please help me ? I am not able to find the a value y from x
Did you initialize AZ_L? If not initialize it as AZ_L = zeros(3,1) ;
3 days ago | 0
My code is about finding head value using bisection or false error method .But its showing parse error for xl=input("the lower value");i don't know how to solve it...
You have to either copy the function below the main code or copy the function into a different mfile and then run the main code....
3 days ago | 1
Plot last point of column
T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1040940/zch4.txt') ; A = table2array(T) ; [r,c] =...
3 days ago | 0
Unable to perform assignment because the size of the left side is 111-by-1 and the size of the right side is 112-by-1.
The error is siimple, you are trying to save more number of elements than the array is initialized for. A = zeros(2,3) ; % ...
4 days ago | 0
3D plotting of given parametric equations
m = 50 ; n = 50 ; p = 5 ; u = linspace(0,pi,m) ; v = linspace(0,2*pi,n) ; r = linspace(25,75,p) ; [U,V,R] = meshgrid(u,v,r...
4 days ago | 0
| accepted
how to count how many time rows of an matrix apear in other matrix
Read about ismember A = [1 1 3; 1 2 7; 1 3 5]; B = [1 1 3; 2 1 4; 1 3 5; 2 4 5]; [c,ia] = ismemb...
5 days ago | 0
| accepted
Numerical problem in MATLAB (data precision)
Read about format format long But this is not an issue, don't worry.
5 days ago | 0
| accepted
errors with quiver!
spacing = 0.2; [X,Y] = meshgrid(-2:spacing:2); Z = X.*exp(-X.^2 - Y.^2); [DX,DY] = gradient(Z); quiver(X,Y,DX,DY) hold on ...
6 days ago | 0
Unable to plot inequality region
r = -5:0.01:5; [ki, kd] = meshgrid(r); cond = -9*ki>0 & 10*ki - 10*kd + 10>0 & 360*kd - 24*ki + 1320>0; % My 3 inequality c...
7 days ago | 1
| accepted
calculate intensity of a part of images
imgs = dir('*.jpg') ; % give the image extension N = length(imgs) ; % Number of images iwant = cell(N,1) ; % save th...
8 days ago | 0