Community Profile

photo

Sajeer Modavan


Indian Institute of Technology Guwahati

Last seen: 14일 전 2015년부터 활동

I am a Postdoctoral Fellow at IIT Kanpur, India. I completed the PhD in Structural Engineering.

Programming Languages:
Python, C++, C, MATLAB, HTML, Fortran
Spoken Languages:
English

통계

All
  • 3 Month Streak
  • Knowledgeable Level 2
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • 5-Star Galaxy Level 4
  • Explorer
  • Personal Best Downloads Level 2
  • First Review
  • First Submission
  • Community Group Solver
  • Solver
  • Promoter

배지 보기

Content Feed

보기 기준

답변 있음
Find intersecting points of two functions
clc clear dx = 1/100; x = 0:dx:2; fun_1 = (power(x,2)); fun_2 = (x); intersect_subs = find(round(fun_1,1) == round...

대략 4년 전 | 0

답변 있음
Unit step function program
u = @(x) (2*x+4); % u = @(variable) (equation) u(4)-u(4-1)

대략 4년 전 | 0

답변 있음
Convert cell array to double, with comma separated elements
I hope you are looking this A = ['1.265000e+02, 2.505000e+02, 22, 27, ' '1.275000e+02, 2.505000e+02, 20, 29, ' '1.275000e+0...

대략 4년 전 | 0

답변 있음
Multiple one variable many parameter plots
I didn't understood whats your input. I hope this function will be accepted if I understood what you are looking. function com...

거의 5년 전 | 0

질문


How can I make 3D imagesc figure?
I want draw the 3D wind field like this, How can plot it if I have down, cross, vertical wind components

거의 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Set limit on secondary y axis
You were applying ylim before ploting, that is why its not working properly. I hope this graph will be accepted. TimeWindow...

거의 5년 전 | 1

| 수락됨

답변 있음
How to analyze excell sheet with Multiple Tab
replace dot with '_' in file name clc, clear Month = 'Apr'; Year = 2015; [Data, text, alldata] = xlsread('KP_Finance_FY20...

거의 5년 전 | 0

답변 있음
need help with this
a = [10;15;3600;4500;45;67;100]; [ind,~] = find(a>=3500); b = a; b(ind) = 0; c = b*30

거의 5년 전 | 0

| 수락됨

답변 있음
Checking the range of input arguments
if ~(varargin{1,2} > 0 && varargin{1,2} < 1), error('Parameters must be in the interval [0,1]') else a = varargin{1}; b = var...

거의 5년 전 | 0

답변 있음
Changing data diagonally in matrix based on formula and table
unable to understand what you exactly looking. But this may help you clc clear matrix = [ 1 1 1 0 1 0...

대략 5년 전 | 1

| 수락됨

답변 있음
Merging 2 mat files
clc clear x1 = load('mat_file_1.mat'); x2 = load('mat_file_2.mat'); a = [x1.a;x2.a]; b = [x1.b;x2.b]; c = [x1.c;x2.c];...

대략 5년 전 | 0

| 수락됨

답변 있음
Error plot Bar graph
for using bar function you have to give M-by-N matrix X = randi([1 100],27,2); bar(X)

대략 5년 전 | 0

| 수락됨

답변 있음
Save/Convert large number of figures
clc;clear;close all %% creating fig files (this not required for you) for ii = 1:10 fig1m = figure; plot(1:100,randi([0 10...

대략 5년 전 | 0

| 수락됨

답변 있음
Anyway to plot one point
scatter(1,2)

대략 5년 전 | 4

답변 있음
unsure about using the hold on funciton
clear clc close all t = 0:0.1:9; N = length(t)-1; y = (-(1.37)*t.^2)+6000; %eqn 1 %Spline Equations %The e...

대략 5년 전 | 0

| 수락됨

답변 있음
How to plot graph scale?
figure plot3([2953500 2955000],[3805000 3805000],[4150000 4150000],'Linewidth',2),hold on plot3([2955000 2955000],[3805000 380...

대략 5년 전 | 0

| 수락됨

답변 있음
Implement code for multi range of temperature
I don't know what you are looking exactly. I did something here, please let me know is it correct or you need further help clc;...

대략 5년 전 | 1

답변 있음
How do I get the matrix p
Since you are solving with for p, result of 's' equal to 'p' to confirm this, you can use following code (which is same as your...

대략 5년 전 | 0

답변 있음
how can i plot the following text files?
For plotting combined input 1 and 2 clear, clc, close all; Input1 = load('double_lane_position_lane12k.txt'); Input2 = load...

대략 5년 전 | 0

답변 있음
trouble plotting multiple curves on a graph
There are lot off missing parameters, 'L', 'n', 'ro', 'g', 'E', 'S_FEM' and 'dnew'. for ploting two points you don't need line...

대략 5년 전 | 0

답변 있음
how can i plot the following text files?
Input1 = load('double_lane_velocity_lane1.txt'); Input2 = load('double_lane_velocity_lane2.txt'); figure for ii = 0:49 ...

대략 5년 전 | 0

답변 있음
How can I draw a line with arrow head between 2 data points in a plot
t = 1:0.1:10; wo = 1; x = 2*exp(t*wo).*sin(t*wo); plot(t,x),hold on plot([6 6],[-1e5 1e5],'--k','Linewidth',1.4) plot([8...

대략 5년 전 | 11