photo

William Rose


2007년부터 활동

Followers: 5   Following: 0

메시지

통계

All
MATLAB Answers

13 질문
1,035 답변

File Exchange

10 파일

순위
72
of 300,753

평판
2,219

참여
13 질문
1,035 답변

답변 채택
100.0%

획득한 표
330

순위
1,454 of 21,075

평판
1,307

평균 평점
3.20

참여
10 파일

다운로드 수
21

ALL TIME 다운로드 수
12929

순위

of 170,858

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 36 Month Streak
  • Thankful Level 4
  • GitHub Submissions Level 1
  • Personal Best Downloads Level 2
  • Guiding Light
  • Knowledgeable Level 5
  • Revival Level 3
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How to implement direct dynamics equations using Euler-Lagrange for an RRP/SCARA robot in Robotics Toolbox?
@José Maximiliano, Even if the first link has an "L" shape, it still has a well-defined (i.e calculatable) center of mass and m...

12일 전 | 0

답변 있음
Motion tracking a marker using a webcam
Alysia, [Edit: correct typos.] This sounds like a great project! Tracking the x-y coordinates of the paintbrush will be the ...

대략 1개월 전 | 0

답변 있음
pcolor plot: how to scale the smoothing differently in x and y directions
@Jonas GROS, I recommend you filter the image with a 2-D smoothing function, or kernel. The user specifies the horizontal and v...

대략 1개월 전 | 0

답변 있음
What is sound pressure level (SPL) in pspectrum code
@지호, I assume, based on your code, that your original signal has units of Pa. Thererefore let us make a seven-second-long simu...

대략 1개월 전 | 1

답변 있음
Can someone open this example?
@Athanasios, Yes. When I go to the URL which you supplied, the web page opens. Then I click the button labelled "Copy Command" ...

대략 1개월 전 | 0

답변 있음
Sign of lambda.eqlin
@Aidan, [edit: fix typos; code not affected] [Edit 2: Fix errors in code which @David Goodmanson pointed out - thank you. Con...

대략 1개월 전 | 1

답변 있음
Show time evolution of an hysteresis loop with color gradient
@Lucrezia, @dbp is right (as always!): please attach a mat file with the variables necessary to run the code fragment and make ...

대략 2개월 전 | 1

| 수락됨

답변 있음
How to differentiate a simulated camera function?
@Ali Haktan, You state "I want to have fixed 3-D points as inputs to the camera. I want to calculate the derivatives of their ...

대략 2개월 전 | 0

답변 있음
Approach to computing statistics on a latitude/longitude grid
@John Cruce, [Edit: I am replacing the script with a revised version that corrects a mistake in the previous version. The erro...

대략 2개월 전 | 0

답변 있음
how to create a volume from the revolution of a variable area trapezoid
@Robert Demyanovich {Edit 10/20/2025: Fix error in code below by changing a 1 to a 3. It was [hst(1),pt(i,3),pb(i,3),hsb(3),h...

2개월 전 | 2

| 수락됨

답변 있음
How to measure similarity between FRFs in MATLAB
@Abo, [Edit: Change the formula for the normalized squared distance slightly: the change is to divide the squared distance by t...

3개월 전 | 1

답변 있음
how to obtain the TSA standard deviation?
@Antonio, You can esitmate the mean frequency by counting zero crossings. Depending on the level of noise in the data, you may...

3개월 전 | 0

| 수락됨

답변 있음
Does anyone have a MATLAB code example for a staggered grid (for 1D/2D problems)?
@Sajani, Here is a start, just to show how the grids set up in 2D: dx=0.1; Lx=1; dy=0.1; Ly=1; [PX,PY]=meshgrid(0:dx:Lx,0:dy...

3개월 전 | 0

답변 있음
Por favor el pzmap código
@Mario Gustavo, (Traducido con Google.) Aquí se muestra un ejemplo del uso de pzmap para un sistema de tiempo continuo: un fil...

3개월 전 | 0

답변 있음
Finding peaks and valleys, and associated indexes, of time-shifted noisy sinosidal waves
@Oshani, You write that you want (and I have added numbers to your three desires), 1. The signal value at each peak and t...

3개월 전 | 0

| 수락됨

답변 있음
How to form clusters correctly while implementing the work "Energy Centroid Clustering Algorithm"?
@Anubhav, I agree that pseudocode 2 is not clear. In particular, it is not obvious how the sensors are to be partitioned into ...

3개월 전 | 0

| 수락됨

답변 있음
I want to draw surf plot for the attached figure
@Tarek, You did not attach a figure. But let's suppose that you compute a function f(X,T), on a grid of X and T values. x=-4:0...

3개월 전 | 0

| 수락됨

답변 있음
What algorithm does the scattered interpolant 'boundary' extrapolation use when it extrapolates to a convex hull?
@Atharv, I don't think you have misunderstood anything fundamental. The description is unclear. Here are examples to illustra...

3개월 전 | 2

| 수락됨

답변 있음
what do the AudioDeviceWriter do with a complex inputdata?
@康, I ran your code and got the same results you describe: No error if I play the complex file, then the real. Both playbacks...

3개월 전 | 0

답변 있음
Theoretical Basis and References for Hybrid SAC Example
@keyvan, Here are some citaitons from Matlab Help and elsewhere. For arXiv publications, you cna search for publicaiotns in pe...

4개월 전 | 0

| 수락됨

답변 있음
Performing 2D convolution
@Travis, 2D correlation and 2D convolution are not different if the kernel is symmetric (except for the complex conjugation that...

4개월 전 | 1

| 수락됨

답변 있음
How can I inpaint/interpolate data from an area that was masked during an experiment?
@Alex, Examine the data graphically to get some insight into the issues. x=((1:380)-0.5)/380; % x values from Exampledata.z...

4개월 전 | 0

답변 있음
How can I write a MATLAB script to plot 3D and 2D knee joint data from a CSV file with customized axes and medial–lateral connections?
@MD MEHEDI HASSAN, [Edit: Fix spelling errors in my text. Fix incorrect matrix values for x-coordinates of medial box.] It app...

4개월 전 | 1

| 수락됨

답변 있음
equations not dipslaying corectly in Matlab Answers window
Answering my own question, in order to check whether equations which I enter in an answer are displaying correctly now. I have a...

4개월 전 | 0

| 수락됨

질문


equations not dipslaying corectly in Matlab Answers window
In the most recent two answers I have posted to Matlab answers (here, here), I have used the equation editor (Sigma, in the Matl...

4개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
create a code for butterworth 4th order bandpass filter without Signal Processing Toolbox
@Abhinit, [Edit: Make corections to formulas for a1 and a2 in the lowpass filter. Many of the equations I entrered with the ...

4개월 전 | 0

답변 있음
Logistic regression in MATLAB (without Statistics and Machine Learning Toolbox)
@Alexandre Englert, [edit: The equation I entered with LaTeX, in my answer below, is displaying as a fuzzy gray rectangle on my...

4개월 전 | 0

| 수락됨

답변 있음
Solving the Inverse Kinematics problem using a neural network
@po, Since I was unable to run your code, I tried making my own code to solve the inverse kinematics problem of a three-link pl...

5개월 전 | 0

답변 있음
Help me in Solving PDE
@Muhammad Fahim, [Edit: fix typos (none in code).] Write the finite difference equations and solve it explicitly. This approac...

5개월 전 | 0

| 수락됨

답변 있음
How to color system of PDEs with two population
@Neda, Using my code from the comment above, we can run the rest of your code: r=(0:0.2:10)'; Nr=length(r); theta=0:pi/36:2*p...

6개월 전 | 0

| 수락됨

더 보기