Respondida
Calculations wrong in appdesigner
Result should be 315.5 but is not?? So what is it if it's not 315.5? Since you said this is part of an app my guess is that on...

más de 3 años hace | 0

Respondida
Output of values via a callback function
For this particular question you could addpoints to an animatedline inside the callback function. Each press of the button callb...

más de 3 años hace | 1

Respondida
Error using feval Function to evaluate must be represented as a string scalar, character vector, or function_handle object.
Another approach, if you don't want to work symbolically as @Walter Roberson did, is to create an anonymous function. All I need...

más de 3 años hace | 1

| aceptada

Respondida
Using accumarray for histcounts2 with >1024 bins in 1 dimension
MATLAB limits the number of bins if you specify BinWidth. If you specify a list of edges MATLAB will use that list of edges to d...

más de 3 años hace | 0

| aceptada

Respondida
For very long solution result Workspace doesn't show the full answer
Rather than trying to read 100 pages of text, a couple of options that may suit your needs: call the ccode function convert th...

más de 3 años hace | 0

Respondida
Matlab built-in function not identified
According to a search there are several different functions named coefTest in Statistics and Machine Learning Toolbox. From a qu...

más de 3 años hace | 0

Respondida
How to solve: Limits must be a 2-element vector of increasing numeric values.
Let's look at a couple sections of your code. I'm going to comment out the function declaration line so I can run this in Answer...

más de 3 años hace | 0

Respondida
How to plot binned data from a table?
Take a look at the "Aggregate Timetable Data and Calculate Mean Values" example on the retime documentation page.

más de 3 años hace | 0

Respondida
Question about toolbox dependencies
The behavior you described for iqr is not a bug. The Version History on the documentation page for the iqr function in MATLAB f...

más de 3 años hace | 0

| aceptada

Respondida
Add suffix to name of all variables in workspace
Can you dynamically create variables with patterned names like a_test, b_test, c_test, etc.? Yes. Should you do this? The gener...

más de 3 años hace | 0

| aceptada

Respondida
How to round values of table with mixed types?
Using a sample table: Temp = [37.3;39.1;42.3]; Pressure = [30.1;30.03;29.9]; WindSpeed = [13.4;6.5;7.3]; WindDirection = cat...

más de 3 años hace | 0

Respondida
What is an LAPACK loading error when using polyfit?
There are two Bug Reports that look potentially relevant to this situation. One was fixed in release R2014b and the other in rel...

más de 3 años hace | 0

Respondida
How to create a datetime array in C++
The datetime function supports the Extended Capability of C/C++ Code Generation (with some limitations listed on its documentati...

más de 3 años hace | 1

| aceptada

Respondida
Time and Space Efficiency Problem in Multi-Format .csv file Splicing and Saving
Assuming your data files don't have any header rows, I'd consider avoiding the read/save process and just use operating system c...

más de 3 años hace | 0

| aceptada

Respondida
How to read the result of fprintf
ID = 42; fprintf('set %d\n', ID); When called with that syntax, fprintf does not write to a file. It writes to the Command Win...

más de 3 años hace | 0

Respondida
Inquiry about companies using Matlab for motor controller design of EVs powertrain
You could search the customer stories for stories about electric vehicles and motor control.

más de 3 años hace | 0

Respondida
numerical integration inf to inf
Look at your function over the region in question. e=0.01; f= @(x) 1./sqrt((1-x.^2)+(e/2)*(1-x.^4)); a=-1; b=1; fplot(f, [-...

más de 3 años hace | 0

Respondida
Viewing Symbolic Matrix Entries in Variable Tab?
If you're planning to use the symbolic expression in a loop you may want to create a MATLAB function file from it using matlabFu...

más de 3 años hace | 1

Respondida
Grey Wolf optimizer in matlab
The ability to define local functions in scripts was introduced in release R2016b.

más de 3 años hace | 0

| aceptada

Respondida
App designer: How to define self-referring properties?
That code does not define a variable named x. It defines an object property named x. You're assuming that defining one property...

más de 3 años hace | 1

| aceptada

Respondida
rng usability missing seed functionality
It looks like using "seeds" is being considered "old fashioned" in Matlab 2022b, and there is a warning about it suggesting it w...

más de 3 años hace | 0

| aceptada

Respondida
How do I use matlab.uitest.TestCase to open my app once and perform multple function tests?
You could do this by opening your app in a TestClassSetup method and storing a handle to it in a property of your test class, bu...

más de 3 años hace | 1

| aceptada

Respondida
How can I access the following builtin function code? [L,p] = chol(A,'lower')
We don't distribute the source code for the built-in chol function.

más de 3 años hace | 0

| aceptada

Respondida
Trying to Increase efficiency by avoiding using If statements to select data
Can you dynamically create and access variables with numbered names like x1, x2, x3, etc. or similar names like L_Data and R_Dat...

más de 3 años hace | 0

Respondida
Is Home version an annual-basis or one-time purchase?
For your first question does the MATLAB Home product page (and the FAQ at the end of that page) provide you with sufficient info...

más de 3 años hace | 0

| aceptada

Respondida
How to Convert symbolic variables to numeric
If it contains no symbolic variable use double. two = sym(2); sqrt2 = sqrt(two) x = double(sqrt2) If it does contain a symbo...

más de 3 años hace | 2

Respondida
Why in the Test Manager; option of select New > Test for C/C++ Code is not appearing?
According to the Release Notes the capability to perform C/C++ code testing in the Test Manager was introduced in release R2021a...

más de 3 años hace | 0

| aceptada

Respondida
How to separate real and imaginary components from a given expression in Matlab?
syms X1 X2 XC RL Zin=((X1*XC)-1i*(X2*RL))/(RL+1i*(X1*X2*XC)); A=real(Zin) B=imag(Zin) What leads you to believe something ...

más de 3 años hace | 1

| aceptada

Respondida
ODE solver not running full time span
That suggests to me that you should have received a warning but perhaps you've suppressed it? Something along the lines of "Fail...

más de 3 años hace | 0

Respondida
What are the differences between integral and trapz?
The integral function accepts a function handle as input and computes the integral of that function over an interval by evaluati...

más de 3 años hace | 2

Cargar más