Community Profile

photo

Sergio Yanez-Pagans


University of Arizona

Last seen: Today|Active since 2021

Statistics

All
  • Thankful Level 2
  • 5-Star Galaxy Level 3
  • Thankful Level 1
  • GitHub Submissions Level 3
  • Personal Best Downloads Level 2
  • Knowledgeable Level 1
  • Revival Level 1
  • Solver
  • First Answer
  • First Submission
  • Explorer
  • First Review

View badges

Content Feed

View by

Answered
如何数值计算复杂的根源(eigenvalues) of a determinant?
Maybe this helps: //www.tatmou.com/matlabcentral/fileexchange/94730-matrix-methods-of-linear-algebra?s_tid=srchtitle...

17 days ago | 0

Answered
Convert 2d image to 3d coordinates
//www.tatmou.com/matlabcentral/answers/488245-convert-2d-image-to-3d-image-please

1 month ago | 0

Answered
Is it possible to use the smooth function with a multidimensional matrix having NaN values?
Maybe this could be useful for you: //www.tatmou.com/matlabcentral/fileexchange/23287-smooth2a?s_tid=srchtitle Go...

1 month ago | 0

Answered
Fill plot with gradient colors
Thank you Dave, that was really useful! Excellent answer =)

8 months ago | 0

Question


Fill plot with gradient colors
I'm trying to plot a signal, for example cos(x), with a red gradient colormap for positive values and a blue one for negative va...

8 months ago | 2 answers | 1

2

answers

Question


tiledlayout within another tiledlayout
Is it possible to have a tiledlayout within another tilelayout? I would like to have 2 tiledlayouts on the same MATLAB figure

10 months ago | 0 answers | 0

0

answers

Answered
how to label lines on a graph
This might be useful: //www.tatmou.com/matlabcentral/fileexchange/97964-linemarks

10 months ago | 0

Answered
multi bar labeling plot
I would suggest trying this: //www.tatmou.com/matlabcentral/fileexchange/97964-linemarks

10 months ago | 0

Answered
How to remove the tic labels but not the marks?
This can also help you to create ticks: //www.tatmou.com/matlabcentral/fileexchange/97964-linemarks

10 months ago | 0

Answered
How do I format tick labels before R2016b?
Maybe this could be useful: //www.tatmou.com/matlabcentral/fileexchange/97964-linemarks

10 months ago | 0

Answered
Indicate peak value of a signal in matlab plot
You could try this: //www.tatmou.com/matlabcentral/fileexchange/89491-peaks-and-dips

10 months ago | 0

Question


change color of xticklabels or yticklabels
I need help with this: ax = gca; ax.XColor = 'w'; ax.YColor = 'w'; changes the color of the axis and the xticklabels. I want...

12 months ago | 1 answer | 0

1

answer

Answered
How to save Excel file as a variable and pull data from it?
Using the Import Data option in the Home tab of MATLAB might be the easiest thing to you assuming you don't have tons of sheets ...

12 months ago | 1

Question


Find empty line in text file and build array
Hello everyone, I need help with this, please. If I have a text file (.txt) which contains the following: 1 1 1 1 2 2 2 2 ...

12 months ago | 1 answer | 0

1

answer

Answered
How do I change the number of decimals in the axis ticks?
This might be more useful given that it only shows relevant ticks and labels (it doesn't only change the format of the label). Y...

1 year ago | 0

Answered
Matching deflection/Inflection points of two plotted curves
Hi Ashik, Why don't you try this?: //www.tatmou.com/help/symbolic/find-asymptotes-critical-and-inflection-points.html...

1 year ago | 0

|accepted

Answered
Marking the peak of a plot automatically without having to click on it
You could use my MATLAB File Exchange function: //www.tatmou.com/matlabcentral/fileexchange/89491-peaks-and-dips ...

1 year ago | 0

Answered
How to find peak or dip separation in frequency domain signal
These might work for you: //www.tatmou.com/matlabcentral/fileexchange/89491-peaks-and-dips Hope you find this use...

1 year ago | 1

|accepted

Answered
How do I find the (x,y) coordinates of the peaks and valleys of a graph?
You can use my MATLAB file exchange function, it's really easy to implement and use: //www.tatmou.com/matlabcentral/...

1 year ago | 0

Answered
Error using plot, vectors must have the same length
Just check the sizes of t and c. You can check this on the variable window or on the command window as follows: size(t) % will ...

1 year ago | 1

Answered
Changing values in atable
A good way to get what you want is to convert your table to an array. Here is an example: column1 = [2,3,4,5]'; % Data for tabl...

1 year ago | 0