photo

Sergio Yanez-Pagans


University of Arizona

Last seen: fast 2 Jahre vor Aktiv seit 2021

Followers: 0   Following: 0

Statistik

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

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How to numerically calculate the complex roots (eigenvalues) of a determinant?
Maybe this helps: https://www.mathworks.com/matlabcentral/fileexchange/94730-matrix-methods-of-linear-algebra?s_tid=srchtitle...

mehr als 2 Jahre vor | 0

Gelöst


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2 3 3 3 4...

mehr als 2 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 2 Jahre vor

Gelöst


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...

mehr als 2 Jahre vor

Gelöst


Return area of square
Side of square=input=a Area=output=b

mehr als 2 Jahre vor

Gelöst


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

mehr als 2 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mehr als 2 Jahre vor

Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

mehr als 2 Jahre vor

Gesendet


Peaks and Dips
Easily allows you to automatically find, plot, and label local maxima (peaks) and local minima on MATLAB

mehr als 2 Jahre vor | 4 Downloads |

Thumbnail

Gesendet


LineMarks
Adds "line marks" in order to label and identify constant values or allows to highlight data intervals

mehr als 2 Jahre vor | 2 Downloads |

Thumbnail

Gesendet


Plot,....but plot well!
Fix your horrible default MATLAB plot/graph/figure in 1 easy step

mehr als 2 Jahre vor | 4 Downloads |

Thumbnail

Beantwortet
Convert 2d image to 3d coordinates
https://www.mathworks.com/matlabcentral/answers/488245-convert-2d-image-to-3d-image-please

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 1

Gesendet


Squiggly Arrows
Easiest way to draw a squiggly arrow

mehr als 2 Jahre vor | 1 Download |

Thumbnail

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

etwa 3 Jahre vor | 0

Frage


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...

etwa 3 Jahre vor | 2 Antworten | 1

2

Antworten

Frage


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

etwa 3 Jahre vor | 0 Antworten | 0

0

Antworten

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

mehr als 3 Jahre vor | 0

Beantwortet
multi bar labeling plot
I would suggest trying this: https://www.mathworks.com/matlabcentral/fileexchange/97964-linemarks

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

Frage


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...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
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 ...

mehr als 3 Jahre vor | 1

Frage


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 ...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
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...

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

| akzeptiert

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
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: https://www.mathworks.com/matlabcentral/...

mehr als 3 Jahre vor | 0

Mehr laden