Respondida
Problem finding "valleys" in signal
Have you tried using islocalmin on your original data rather than findpeaks on the "flipped" data?

alrededor de 3 años hace | 0

Respondida
I would like someone to build me a SABR Swaption Pricing Model for a fee
You may want to contact the MathWorks Consulting department and discuss with that group your needs and what would be required to...

alrededor de 3 años hace | 0

Respondida
private variables in a matlab GUI
Before you enter the loop, by the way you've defined it the results property of the app is a double array. You can't assign a st...

alrededor de 3 años hace | 0

Respondida
Where can I access the Enterprise License Administration Guide?
If by "the question abobe[sic]" you mean this question then note the first line of the accepted answer: "License Administrators...

alrededor de 3 años hace | 0

| aceptada

Respondida
Long running time with loops, is it possible to cancel the loops?
Let's look at the number of iterations you perform in each loop. Pulling out appropriate sections of your code to define the var...

alrededor de 3 años hace | 0

Respondida
How to Create an initial state vector for a single qubit using quantum circuit
Are you trying to use the MATLAB Support Package for Quantum Computing or some other package for quantum computing? If the forme...

alrededor de 3 años hace | 0

Respondida
Same code but different results on Mac and PC
When you step through your code in both the Windows and Mac versions of MATLAB using the debugging tools in MATLAB, on which lin...

alrededor de 3 años hace | 0

Respondida
How to Italicize either of the axis tick labels ?
h = plot(1:10, 1:10); xlabel('abracadabra') ylabel('hocus pocus') ax = ancestor(h, 'axes'); The XAxis and YAxis properties o...

alrededor de 3 años hace | 0

Respondida
Error "Unrecognized function or variable 'x'."
The first line where you try to index into the variable x is the line where the error occurs. Where in your code prior to that l...

alrededor de 3 años hace | 1

Respondida
unexpected writetable and readtable behavior
This is the documented behavior. If you scroll down to the Algorithms section on the writetable documentation page, one of the e...

alrededor de 3 años hace | 0

Respondida
No true random for standalone (files only) in AppDesigner?
Question 1: Is that a bug? No. See this documentation page for an explanation. While that talks about MATLAB startup, it also a...

alrededor de 3 años hace | 1

Respondida
Error using plot - not enough input arguments / invalid data argument
The data you're trying to plot are all string arrays so plot is trying to interpret them as a series of name-value arguments. Bu...

alrededor de 3 años hace | 0

Respondida
How does feedforwardnet(x) work in matlab.
Are you taking into account the pre-processing and post-processing functions?

alrededor de 3 años hace | 0

Respondida
matlab Appdesigner TreeNode's NodeData property is unable to be set as a char that is a matapp file name
Can you show us the code where you're trying to get access to the word that you typed or pasted into the NodeData box? I'm guess...

alrededor de 3 años hace | 0

Respondida
How can I just load a saved variable created from merging other variables but not also load those other variables?
save ArrayA; % I ONLY save ArrayA No, that's not what that means. If you look at the list of syntaxes on the save documentation...

alrededor de 3 años hace | 1

| aceptada

Respondida
datetime default format by version and operating system
What are your datetime format preferences settings? Can you confirm that you're using the datetime function included as part of...

alrededor de 3 años hace | 0

| aceptada

Respondida
How can I change my O(n^2) solution to O(n logn) or better?
You don't need to create a big matrix, just another vector. num_array = [2 7 11 15] target = 9 solutionLocations = ismember(n...

alrededor de 3 años hace | 0

Respondida
change floating number in a column matrix
I'm guessing whoever or whatever wrote that file intended that to be a "missing" value or it's an outlier. The functionality in ...

alrededor de 3 años hace | 0

Respondida
(Very!) Slow elementwise division using large sparse matrices.
The resulting matrix won't be very sparse. Anywhere your Hscos has a 0 (including the implicitly stored 0's) the result will con...

alrededor de 3 años hace | 1

Respondida
Can argument validation check if size is at least some value?
No. You will need to create your own custom validation function. Use the mustBeEqualSize example on this documentation page as a...

alrededor de 3 años hace | 0

| aceptada

Respondida
Deploy ANN model Developed using ann fitting app using Matlab Compiler
If you are attempting to compile code using MATLAB Compiler that calls load to load an object from a MAT-file and there is no in...

alrededor de 3 años hace | 0

Respondida
Find minimum or maximum value - two conditions
I think the islocalmin and islocalmax functions will be of use to you. See the MinSeparation name-value argument.

alrededor de 3 años hace | 1

Respondida
I need the code of assempde function
The assempde function is part of Partial Differential Equation Toolbox. If you have this toolbox licensed and installed you can ...

alrededor de 3 años hace | 0

Respondida
Trying to create a class that will adhere to a certain script and output:
Your class is a value class rather than a handle class. See this documentation page for a discussion of the difference. That mea...

alrededor de 3 años hace | 1

| aceptada

Respondida
Undefined function 'preprocessData' for input arguments of type 'cell'.
Are augmentData and preprocessData in the same file (and a different file than the one in which you're trying to use preprocessD...

alrededor de 3 años hace | 0

Respondida
Positioning Axes using arrays
Position is one of the properties of an axes object. In general for the core graphics objects the documentation pages list and e...

alrededor de 3 años hace | 0

Respondida
Activation Key - MATLAB 2019a
Please contact Technical Support directly using the Contact Support link under the Get Support heading at the end of this page f...

alrededor de 3 años hace | 0

Respondida
matlab GUI: How to access the name/tag of a function?
If they all behave exactly the same, why not give them the exact same callback function? The first input to the callback is the ...

alrededor de 3 años hace | 0

| aceptada

Respondida
Restore Default Font Colors of Figures
See the "Remove Default Values" or "Set Properties to Factory-Defined Values" sections on this documentation page.

alrededor de 3 años hace | 0

| aceptada

Respondida
How to convert data from floating point to fixed point? Not function, only data.
Try calling the fi function. q = fi(pi)

alrededor de 3 años hace | 0

| aceptada

Cargar más