photo

KSSV


Last seen: Today 2011 年からアクティブ

Followers: 8   Following: 0

https://sites.google.com/site/kolukulasivasrinivas/ Professional Interests: Mathematical Computing

Programming Languages:
Python, MATLAB, Fortran
Spoken Languages:
English, Hindi, Telugu

統計

All
  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack 2nd Place
  • Most Accepted 2022
  • Grand Master
  • Solver
  • Personal Best Downloads Level 4
  • First Review
  • Most Accepted 2021
  • Treasure Hunt Participant
  • MATLAB Central Treasure Hunt Finisher
  • 5-Star Galaxy Level 5
  • First Submission

バッジを表示

Feeds

表示方法

回答済み
Script has no errors, but no plot is given
% Constants hbar = 1.0545718e-34; % Planck's constant m = 9.10938356e-31; % Electron mass l = 1; % angular momentum quantum...

12日 前 | 0

| 採用済み

回答済み
Index in position 1 is invalid. Array indices must be positive integers or logical values.
You need to proceed like this: tic % Specifying the length of the array N = 1000; % Making phi and theta array lengths th...

13日 前 | 0

| 採用済み

回答済み
How to move colorbar in scatter3 plot and keep it inside the figure
You need to play with the position. cb.Position = [x y L w] ; The position have the details of position (x,y) of the colorbar...

約1ヶ月 前 | 0

回答済み
How do I plot a polynomial equation and set of x-y coordinates on the same graph?
x = [2 5 8 11 14 20]; y = [0.20 0.29 0.44 0.50 0.66 0.56]; p = polyfit(x,y,3) ; yi = polyval(p,x) ; figure hold on plo...

2ヶ月 前 | 0

回答済み
How can I perform time averaging of a signal acquired with an accelerometer?
Read about smooth, movmean.

3ヶ月 前 | 1

回答済み
Rearranging a vector into a matrix according to other two vectors
x = unique(lat) ; y = unique(depth) ; [X,Y] = meshgrid(x,y) ; F = scatteredInterpolant(lat,depth,concentration,'linear','n...

3ヶ月 前 | 1

回答済み
how to store total numbers from for loop in variables
x = xlsread('grades.xlsx'); % Initialise all variables to zero fa = 0; pa = 0; cr = 0; di = 0; hd = 0; % Write your cod...

3ヶ月 前 | 1

回答済み
Plot time-series data
Let A be your table. wavelength = A(:,1) ; Time = 1:size(A,2)-1 ; data = A(:,2:end) ; h = pcolor(wavelength,Time,data') ;...

3ヶ月 前 | 0

回答済み
Extracting Histogram data for plot generation
h = histogram(rand(100,1)) data = h.Data ; BinEdges = h.BinEdges ; Values = h.Values ;

4ヶ月 前 | 0

回答済み
Trying to find pi using when loops to a tolerance of 10^-4.
Try somewthing l;ike this: % summation of pi = 4 * (-1^(k+1))/(2*k-1) ; n_digits = 10 ; iteration = 0 ; % starting iteratio...

4ヶ月 前 | 0

回答済み
hi how can i evaluate the function below from x=1,x=2 into a step of 0.1 y=x/(x2+1)
x = 1:0.1:2; % Define the range of x with a step of 0.1 y = x./(x.^2 + 1); % Evaluate the function plot(x,y)

4ヶ月 前 | 0

回答済み
convert a .mat to excel file
matFiles = dir('*.mat') ; N = length(matFiles) ; T = table; for i =1:N load(matFiles(i).name) ; T.(i) = val ; ...

4ヶ月 前 | 0

回答済み
Solving a system of Non Linear Differential Equations
This is the code..I am getting hight values...you may check and modify the code. tspan = [0 1]; y0 = [0 0 100]; sol = ode45(...

4ヶ月 前 | 0

回答済み
Why does it give error in spectrogram plotting?
Replace data = @(filename)fullfile('D:\Rahul\Data_tokamak\data&plot\data_paper1\H-mode data\H-mode bistable model\set1_neoAno_r...

4ヶ月 前 | 0

| 採用済み

回答済み
Plot a time series plot in customized rectangle
plot(time,pm_1,'b','LineWidth',1); % You may change line width

4ヶ月 前 | 1

回答済み
Hi, I'd like to see the temperature on a surface map of lon (-20 20) and lat (-10 10).I'd like to have an idea so that this script gives me a better visual like on the figure?
You need to make the values lying outside the given scattered points to NaN. For outside values, the function will extrapolate w...

4ヶ月 前 | 0

| 採用済み

回答済み
fsurf(sym(1), [0 1 0 1], 'y', 'EdgeColor', 'none'), this is fun for z axis , how about y axis?
What you gave is similiar to: x = linspace(0,1,35) ; y = linspace(0,1,35) ; [X,Y] = meshgrid(x,y) ; Z = ones(size(X)) ; ...

4ヶ月 前 | 1

回答済み
Using the clear command in functions?
Becuase clc, clear clears your input variables which are saved in the workspace. You need not to use it inside the function. ...

4ヶ月 前 | 1

回答済み
Error using surf Z must be a matrix, not a scalar or vector.
You have to use X and Y i.e matrix in the calculation Z. x=(0:0.1:pi); y=(0:0.1:pi); [X, Y]= meshgrid(x,y); Z=(sin(0.3*X)+(...

5ヶ月 前 | 0

| 採用済み

回答済み
How to fill/interpolate missing data to nearest geospatial coordinate?
% Prepare dummy data [X,Y] = meshgrid(1:10,1:10) ; Z = rand(size(X)) ; % Make random nan's idx = sort(randsample(numel(X...

6ヶ月 前 | 0

回答済み
Loading a .fig file in MATLAB without losing information
h1 = openfig('test1.fig','reuse'); % open existing/ saved figure ax1 = gca; % get handle to axes of figure h2 = figure; % cr...

6ヶ月 前 | 1

| 採用済み

回答済み
How to get the plot x&y when a user clicks on a point I have plotted
REad about getpts

6ヶ月 前 | 0

回答済み
I wonder how to make the lines thicker in rlocus graph
sys = tf([2 5 1],[1 2 3]); rlocus(sys) set(findall(gca, 'Type', 'Line'),'LineWidth',5);

7ヶ月 前 | 0

回答済み
How to get output of multiple variables in xls
Let the variables be x, y, z. T = table(x,y,z) ; writetable(T,'text.xlsx')

7ヶ月 前 | 0

回答済み
FE triangle mesh without the mesh node connections visible
h1 = trisurf(meshConnections, X, Y, Z, permittivity); h1.EdgeColor = 'none' ;

7ヶ月 前 | 0

| 採用済み

回答済み
Searching a string on a table to get time
You may try using functions like contains, strcmp T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/...

7ヶ月 前 | 0

回答済み
Why dot indexing is not supported for variables of this type using EMD method in MATLAB R2019a version ? What can I do?
It seems IMF is not a sturcutre. Check class(IMF) If it is double. Try max(IMF)

8ヶ月 前 | 0

| 採用済み

回答済み
How to plot the graph from the data table as attached.
load matlab.mat ; x = LineProfile.(1) ; y = LineProfile.(2) ; plot(X,y,'r') hold on plot(x,smooth(y),'b')

9ヶ月 前 | 0

| 採用済み

回答済み
Matlab Error (Z must be a matrix, not a scalar or vector.)?
P_air = .1:.1:4; alpha = .0125:.0125:.5; [alpha,P_air] = meshgrid(alpha,P_air); T_air_dry = (1/0.0408)*log((0.42*P_air.*(1-al...

9ヶ月 前 | 1

| 採用済み

さらに読み込む