
KSSV
https://sites.google.com/site/kolukulasivasrinivas/ Professional Interests: Mathematical Computing
Python, MATLAB, Fortran
Spoken Languages:
English, Hindi, Telugu
Statistics
순위
7
of 260,043
평판
23,839
참여
19 질문
10,552 답변
답변 채택
78.95%
획득한 표
2,906
순위
17,670
of 111,597
참여
0 문제
18 해답
점수
181
배지 수
1
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
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...
1일 전 | 0
| 수락됨
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...
2일 전 | 1
| 수락됨
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....
2일 전 | 0
Ho to find the interception
The best you can use is: https://in.mathworks.com/matlabcentral/fileexchange/22441-curve-intersections
2일 전 | 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
2일 전 | 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...
2일 전 | 0
| 수락됨
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,:) = [] ;
2일 전 | 0
how to remove values below 0.1?
If P is your array if size 1x27331. P(P<0.1) = NaN ;
2일 전 | 0
| 수락됨
How to plot these two plots in a single figure and using both y axis?
Read about yyaxis
2일 전 | 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일 전 | 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일 전 | 0
How can I output only part of a array?
FileName = ['114_1688','.jpg'] ; saveas(gcf,FileName)
3일 전 | 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일 전 | 0
| 수락됨
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일 전 | 0
| 수락됨
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일 전 | 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일 전 | 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일 전 | 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일 전 | 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일 전 | 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일 전 | 0
| 수락됨
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일 전 | 0
| 수락됨
Numerical problem in MATLAB (data precision)
Read about format format long But this is not an issue, don't worry.
5일 전 | 0
| 수락됨
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일 전 | 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일 전 | 1
| 수락됨
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일 전 | 0