photo

Sajeer Modavan


Last seen: environ un mois il y a Actif depuis 2015

Followers: 0   Following: 1

PhD in Structural Engineering.

Programming Languages:
Python, C++, C, MATLAB, HTML, Fortran
Spoken Languages:
English, Hindi, Arabic
Pronouns:
He/him
Professional Interests:
Signal Monitoring and Parameter Tuning, Vibration Analysis, Structural Analysis, Renewable Energy, Finite Element Analysis (FEA)

Statistiques

All
MATLAB Answers

1 Question
21 Réponses

File Exchange

6 Fichiers

Cody

0 Problèmes
90 Solutions

RANG
1 082
of 301 664

RÉPUTATION
70

CONTRIBUTIONS
1 Question
21 Réponses

ACCEPTATION DE VOS RÉPONSES
0.0%

VOTES REÇUS
18

RANG
2 948 of 21 377

RÉPUTATION
566

CLASSEMENT MOYEN
4.70

CONTRIBUTIONS
6 Fichiers

TÉLÉCHARGEMENTS
10

ALL TIME TÉLÉCHARGEMENTS
5127

RANG
2 683
of 176 019

CONTRIBUTIONS
0 Problèmes
90 Solutions

SCORE
1 246

NOMBRE DE BADGES
7

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 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

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

environ 6 ans il y a | 0

Réponse apportée
Unit step function program
u = @(x) (2*x+4); % u = @(variable) (equation) u(4)-u(4-1)

environ 6 ans il y a | 0

Réponse apportée
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...

environ 6 ans il y a | 0

Réponse apportée
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...

presque 7 ans il y a | 0

Question


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

presque 7 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
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...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
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...

presque 7 ans il y a | 0

Réponse apportée
need help with this
a = [10;15;3600;4500;45;67;100]; [ind,~] = find(a>=3500); b = a; b(ind) = 0; c = b*30

environ 7 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
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...

environ 7 ans il y a | 1

| A accepté

Réponse apportée
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];...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Error plot Bar graph
for using bar function you have to give M-by-N matrix X = randi([1 100],27,2); bar(X)

environ 7 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Anyway to plot one point
scatter(1,2)

environ 7 ans il y a | 4

Réponse apportée
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...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
How to plot graph scale?
figure plot3([2953500 2955000],[3805000 3805000],[4150000 4150000],'Linewidth',2),hold on plot3([2955000 2955000],[3805000 380...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
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;...

environ 7 ans il y a | 1

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
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 ...

environ 7 ans il y a | 0

Réponse apportée
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...

environ 7 ans il y a | 11