Risposto
I want to find unique value(s) based on a given conditions
@Tulkkas, this should do it (I added a randomize of your sorted data since first, if it would always be sorted skip as indicated...

oltre un anno fa | 0

| accettato

Risposto
Need help understanding rescale()
@Adrian Velasquez, according to rescale documentation each element should be rescaled to [0..1] using this method: l + [(A-...

oltre un anno fa | 0

| accettato

Risposto
spline for corner object
@Mehri Mehrnia, use Transform Cartesian coordinates to polar or cylindrical - MATLAB cart2pol (mathworks.com) and sort by theta ...

oltre un anno fa | 0

| accettato

Risposto
Why am I not getting desired values using loop?
lbr = length(br_peaks); points = nan(lbr,7); % each row is 1->lbr; cols for a row are nan filled % could ...

oltre un anno fa | 0

| accettato

Risposto
Why am I getting this error when trying to logically compare 2 arrays inside of a struct of the same length
@Bolaji, I believe that with each of the statements data(MainRawFilt).(dataNames{k}) = [] you are reducing the size of data.(dat...

quasi 2 anni fa | 0

Risposto
preallocating memory without storing numbers
@Philine Baumert, given that your issue is with code using the end index into arrays which by default won't work correctly with ...

quasi 2 anni fa | 0

| accettato

Risposto
When subclassing "double" with new properties, is there an easy way to access the data value?
@Robbie, see Subclasses of Built-In Types with Properties - MATLAB & Simulink (mathworks.com) Sorry but the subsasgn and subsre...

quasi 2 anni fa | 0

| accettato

Risposto
I am trying to solve for OS here, but keeping getting pi/2 even when I change L
@adam puchalski, you need to limit fsolve such that it doesn't attempt values that cause sqrt(cos(initial)-cos(theta)) to return...

quasi 2 anni fa | 0

Risposto
Using "for" loop for summation of matrix product
@Nir Vaishnav, you don't say what any of the iputs are, but since kron will produce a matrix (unless both inputs I and bk are ei...

quasi 2 anni fa | 1

| accettato

Risposto
preallocating memory without storing numbers
@Philine Baumert, keeping others in the dark doesn't shed any more light on finding what's hidden. So an answer doesn't seem pos...

quasi 2 anni fa | 0

Risposto
How to separate waves from a signal
@Abdelhakim Souidi , I couldn't determine if you had the data or just an image to work with. If you are working with just an im...

quasi 2 anni fa | 0

Risposto
Subtracting equal elements of one array from another array of a different size
One way to allow MATLAB to compare different sized vectors is to have one be a column and the other be a row. Assuming we are st...

quasi 2 anni fa | 1

| accettato

Risposto
How can I save the output of a for loop onto the same column, when each iteration gives me an answer of different heights?
Store the itteration results in a cell array (not the default doubly type array you are using); see Cell array - MATLAB (mathwor...

quasi 2 anni fa | 0

Risposto
how to create a signal with parameters that can be changed while the signal is running?
It is possible that this low-level audio interface could work for you: pa-wavplay - File Exchange - MATLAB Central (mathworks.c...

quasi 2 anni fa | 0

Inviato


LinkedList provides for doubly and multiple linked lists
Dlnode and Mdlnode classes enhance: https://www.mathworks.com/help/matlab/matlab_oop/example-implementing-linked-lists.html#brik...

circa 2 anni fa | 1 download |

Inviato


FormattedData provides aggregated 'disp' of class properties
Package +FormattedData classes aggregate and specially format object data of user defined classes to show their hierarchy and re...

circa 2 anni fa | 1 download |