photo

Parvesh Deepan


Last seen: 1 year 前 自 2024 起处于活动状态

Followers: 0   Following: 0

Spoken Languages:
English

统计学

MATLAB Answers

13 个提问
2 个回答

排名
189,607
of 299,763

声誉
0

贡献数
13 个提问
2 个回答

回答接受率
30.77%

收到投票数
0

排名
 of 20,798

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 165,797

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 3

查看徽章

Feeds

排序方式:

提问


Adjust the given code based on Newmark Beta Method based on input base acceleration file.
clear all; clc; close all; %% Solution 1 & 2: % Define parameters m = 1; % Mass of each story (kg) k = 1; % Stiffness of e...

1 year 前 | 1 个回答 | 0

1

个回答

提问


Problem based on Modal period & Newmark-Beta Method
I've generated an MATLAB code based on these pointed problems, such that: Q: Consider a 2D 3-story shear building model. 1. Fo...

1 year 前 | 0 个回答 | 0

0

个回答

提问


Prepare an MATLAB code based on Newmark Beta Algorithm problem
The problem is attached herewith along with needed text file.

1 year 前 | 0 个回答 | 0

0

个回答

提问


Prepare a MATLAB code that develop Response Spectrum (Acceleration & Time ordinates) based on acceleration (m/s/s) & time(seconds) records contained in a .txt file?
Prepare a MATLAB code that develop Response Spectrum (Acceleration & Time ordinates) based on acceleration (m/s/s) & time(second...

1 year 前 | 1 个回答 | 0

1

个回答

已回答
Prepare Fourier Amplitude Spectrum from ground motion record (Peak-Acceleration vs time-period)
[FTs1,Fv] = FFT1(T1.('Peak Acceleration'),T1.Time); Here, why you've used FFT for time function ? [PeakVal,idx] = max(abs(FT...

1 year 前 | 0

提问


Prepare Fourier Amplitude Spectrum from ground motion record (Peak-Acceleration vs time-period)
Prepare Fourier Amplitude Spectrum from ground motion record (Peak-Acceleration vs time-period) with the input .txt files which ...

1 year 前 | 2 个回答 | 0

2

个回答

提问


How to extract ony numerical data points from .dat files contained in a folder?
I've various .dat files contained in a folder. All these .dat files contains some header lines, which needs to be skip while the...

1 year 前 | 1 个回答 | 0

1

个回答

提问


UnderDamped Free SDOF System
%%%%%%%%%%%%%%%% Equation of Motion: Damped SDOF System %%%%%%%%%%%%%%%%%%% %%%%%% Example Problem - 2.5 (Dynamics of Structure...

1 year 前 | 1 个回答 | 0

1

个回答

提问


How to convert radian to degree from answer (or equation) generated from syms
%%%%%%%%%%%%%%% Equation of Motion: Undamped SDOF System %%%%%%%%%%%%%%%%%% %%%%%% Example Problem - 2.2 (Dynamics of Structure...

1 year 前 | 1 个回答 | 0

1

个回答

提问


Assemble Global Stiffness Matrix
%% INPUTs: A = 2300; % Cross-Sectional Area of member (in mm^2) E = 2*10^5; % Elastic Modulus (i...

1 year 前 | 2 个回答 | 0

2

个回答

提问


Boundary Value Problem based on specific problem
clear all; close all; clc; %% INPUTs: f = 6; % Natural Cyclic Frequency (1/sec or Hertz-Hz) x0 = 0.02; % In...

1 year 前 | 1 个回答 | 0

1

个回答

提问


How can I summarise the given MATLAB code?
Please find the attached Matlab code

1 year 前 | 1 个回答 | 0

1

个回答

提问


How to obtain General Solution of Homogenous ODE; (D^2) - (A^2) = 0 in terms of sin & cos
clc; clear all; close all; syms y(x) O1 = diff(y,x,2) + 600*x == 0; dsolve(O1) I'm trying this approach but I need output ...

1 year 前 | 1 个回答 | 0

1

个回答

提问


How to define a for loop for given FINDPEAKS problem ?
[A1,L] = findpeaks(A(:,1)); A1(:,2) = A(L,2); [A2,L1] = findpeaks(A1(:,1)); A2(:,2) = A1(L1,2...

1 year 前 | 1 个回答 | 0

1

个回答