Answered
Linear indices from colon operator
See sub2ind.

1 year ago | 1

Answered
Multiple outputs from anonymous function
When you define an anonymous function, assign it to one output. f = @(x) svd(x, "econ") % Define f When you call an anonymous ...

1 year ago | 0

Answered
null or NaN entries in image arrays?
If your images are stored in an integer data type, assigning a NaN value into that array will store a 0 in that location. There ...

1 year ago | 0

Answered
Class property described, but not available for serialPort objects?
The Version History section on that documentation page states that there is a "New Tag Property" introduced in release R2024a. S...

1 year ago | 1

| accepted

Answered
Is there a way to define a callback function in Matlab that triggers on runtime errors?
Depending on what exactly you want to clean up, creating an onCleanup object may be of use to you. When this object is destroyed...

1 year ago | 0

Answered
Unit testing of a script that requires a file as input
I would split your script into two pieces: An interface piece that calls input. This piece would not be used during automated t...

1 year ago | 0

Answered
Constructing a string with several index requirements
r2 = [0 30 60 90 120 150 180 210]; ind = 0:numel(r2)-1; result = join("ScanArray(0)(" + ind + ")=" + r2, newl...

1 year ago | 1

Answered
Changing values in an array with unknown dimension
You can use ind2sub as suggested in the answer posted by @Jaynik. But as they wrote that code, they hard-coded the number of dim...

1 year ago | 1

Answered
Mesh error on my Matlab R2024a home edition
You have your own script named strings.m. MathWorks introduced a strings function in release R2016b and this function appears to...

1 year ago | 0

| accepted

Answered
Sparse matrix memory understanding
Please don't post pictures of code. MATLAB Answers can't run pictures of code. rng default Yb = unifrnd(-1, 1, [20000 20000]);...

1 year ago | 0

| accepted

Answered
if/elseif statement with rand() falling between two values
You could either write your code like this: rng default % Allow both code segments to generate the same sequence of random numb...

1 year ago | 0

| accepted

Answered
Rock, Paper, Scissors Game
You could, instead of making a matrix of results, make a table. possibilities = ["rock", "scissors", "paper"]; results = array...

1 year ago | 1

Answered
How to remove some xticklabels (but still keeping all the xticks)?
x = 1:100; y = exp(-0.1*x); plot(x,y) xticks(0:10:100) xl = xticklabels; xl(1:2:end) = {''}; % Replace every other label x...

1 year ago | 1

Answered
ltefadingchannel built-in function
which -all ltefadingchannel So this is a MATLAB code file. dbtype 189 lteFadingChannel.m It's a MATLAB function file. You can...

1 year ago | 0

Answered
Solve and Vpasolve can't find solutions
I am trying to solve this system of equations for my class. No, you have a system of inequalities and equations. Let's try solv...

1 year ago | 1

| accepted

Answered
Suppressing braces and single quotes of a string matrix
That's not a string matrix. That's a cell array each cell of which contains a char vector. Commonly that's referred to as a cell...

1 year ago | 0

Answered
Array indices must be positive integers or logical values
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...

1 year ago | 0

Answered
Problem with iradon in Matlab 2024b
Can you confirm that you're using the iradon function included in Image Processing Toolbox? The error message indicates the fail...

1 year ago | 0

Answered
Circshift bug for sparse logical.
This bug was fixed in release R2018a.

1 year ago | 0

| accepted

Answered
Downsampling array data from counts per minute to counts per hour
Another potential approach would be to use the groupsummary function.

1 year ago | 0

Answered
I am struggling to store a function without it being evaluated so the function can be differentiated later.
The correct syntax to make that into an anonymous function is: startfunc = @(t) 1./t + log(t) Then evaluating it works like: ...

1 year ago | 0

Answered
Attempted to access solutionsofar(:,0); index must be a positive integer or logical.
To clarify, most likely solutionsofar starts off as a 0-by-0 matrix because it was declared as global. From that documentation p...

1 year ago | 0

Answered
A parfor loop and random number generator
See this documentation page for an explanation and a suggested approach to do what you want.

1 year ago | 2

Answered
MATLAb Solve function not solving
I ran the code using release R2019a and it seems to have worked correctly, giving results that match what others have posted in ...

1 year ago | 1

| accepted

Answered
Simple question about creating an anonymous function,
The ode45 function requires the function handle you specify as the first input to accept two input arguments and return an outpu...

1 year ago | 1

| accepted

Answered
Matlab Compiler: passing parameters
How can I prepare a compiled Standalone Application such that the user can open it either in a Matlab command window or a web br...

1 year ago | 0

| accepted

Answered
difference between simulating a polynomial to the nth power and using the polynomial expansion theorem to expand it. the index increases, the difference in values increases
Let's look at the numbers involved in the calculations in your polynomial evaluations. I've renamed r0_values to just r0 to make...

1 year ago | 1

| accepted

Answered
Installed package is not working
In order to see Control System Toolbox in the output of ver, specify 'control' (singular) instead of 'controls' (plural). ver c...

1 year ago | 0

Answered
How to scale values in y-axis to be 1-100%?
Use normalize to normalize your data to the range [0, 100]. x = [1, 2, 3, 4, 5, 6, 7, 8, 9]; y = [5, 50, 200, 180, 100, 60, 53...

1 year ago | 1

Answered
The Code to replace non-threshold indexes in Array
Get rid of the find call. A = randi(5,5) idx = (A > 3) % Make a logical mask A(idx) = log10(A(idx)) % Use the logical mask to...

1 year ago | 0

| accepted

Load more