Answered
What is the last day of support for a MATLAB release (EOL - End of Life)?
This is not a good answer, @MathWorks Support Team - It's like saying pi is the ratio of circumference and diameter, when the qu...

8 months ago | 0

Answered
複素数の事前割り当て
You can use this syntax of zeros() to preallocate the data as a complex array -https://in.mathworks.com/help/matlab/ref/zeros.ht...

8 months ago | 1

| accepted

Answered
How to find the frequency of individual elements in a matrix?
MATLAB has a in-built function for it - histogram, which does both the operations in single command - s = load('micro2d (2).ma...

9 months ago | 0

| accepted

Answered
Assumption on another symbolic Variable affecting a previous assumption
Because assume over-writes assumptions. From the Tips section in the documentation page - "assume removes any assumptions pr...

9 months ago | 2

| accepted

Answered
MATLAB Grader: What should my assessment return when it determines a student solution is correct or incorrect?
You can use assert to check a condition (whether the title contains a particular text or not) and throw a (custom defined) error...

9 months ago | 1

| accepted

Answered
To find answer using matlabfunction
You get the wrong value because the order of inputs is not correct. By default, matlabFunction uses alphabetical order for the ...

9 months ago | 0

| accepted

Answered
convert a .mat to excel file
(Assuming single data set in each file) Read the data from the files and use writematrix to save the data in excel files accord...

9 months ago | 0

Answered
Matlab cannot recognize variable
"Why is Lambda unrecognized here?" Because the while loop is not initiated, as the condition is not satisfied. As the while lo...

9 months ago | 1

| accepted

Answered
cell配列をスカラー配列に直すにはどうすればいいですか?
I am not sure why you are using linspace here. You can use cellfun to calculate mean of each cell element - avg = cellfun(@me...

9 months ago | 1

Answered
Matlab is giving different answers for the same calculation
That's because the value of D_h is not 0.0019. The value stored is not the same as value displayed. rho = 916; %kg/m^3 ...

9 months ago | 2

Answered
インデックスが配列要素数を超えています。インデックスは 0 を超えてはなりません。
When kq is 0, the equation becomes 1==0, which is obviously not true, thus there is no solution for it. For that iteration, q1 i...

9 months ago | 1

| accepted

Answered
How can I change the decimal separator when exporting to Excel?
Try - T = readmatrix('filename.format', 'DecimalSeparator',',');

9 months ago | 0

Answered
How to get Bin Edges at specific Value point (Maximum value) in histogram.
load('Data.mat') H = histogram(DATA) %Get the index of the max value alongside [HMAX, idx] = max(H.Values,[],"all") %USe the...

9 months ago | 0

| accepted

Answered
xlabel do not appear in plot
Call the plot() command first and then define the labels and legend - syms x s u1 = stepfun(x,0); f1 = x.*exp(-3*x).*u1; ...

9 months ago | 1

| accepted

Answered
Why does my ode45 return a solution with the first values as zero despite I supplying non-zero initial conditions?
"Why does my ode45 return a solution with the first values as zero despite I supplying non-zero initial conditions?" Because yo...

9 months ago | 0

| accepted

Answered
How to make this type of variation plot in MATLAB
You are looking for errorbar.

9 months ago | 0

| accepted

Answered
Error using mesh - Z must be a matrix, not a scalar or vector, using mesh command
The difference between min(x1) and max(x1) is not 100, thus the vector x1fit generated via colon() is just min(x1). Consequently...

9 months ago | 0

| accepted

Answered
Getting an error message when I use 'triangle()' function.
That help is for a Stateflow operator in SIMULINK (as mentioned in the 1st line), not for a function in MATLAB. help triangle ...

9 months ago | 0

| accepted

Answered
I could not display all the legends related to the plotted bars
You get a single legend entry because there is only a single graphical object. If you want a separate legend for each bar, you ...

9 months ago | 0

| accepted

Answered
Finding an angle in a trigonometric function using 2 equations
As you are solving for beta, you have to define beta as a symbolic variable. Also, I have reduced the step size in x, as the va...

9 months ago | 1

Answered
error using preallocation for table using size option in R2023b
Use single quotation marks around the VariableTypes arguement instead of double quotation marks - % v ...

9 months ago | 0

| accepted

Answered
converting 3d matrix into a cell array
@AT_HYZ, change the dimensions and use the above transformation - abc = rand(1001,259,259); %Shift dimensions Mymatrix = s...

9 months ago | 0

| accepted

Answered
downgrade From matlab r2022b update 8 to r2022b update 5
https://in.mathworks.com/matlabcentral/answers/473278-how-can-i-roll-back-a-matlab-update https://in.mathworks.com/matlabcentra...

9 months ago | 0

Answered
Vector sliding average over different number of points
Here's a vectorized method - %number of points in each block Ns = [4 2 2 1 3 1 1 2 3 1 1 2 1 2 3 1]; %sum of these points = 3...

9 months ago | 0

| accepted

Answered
Return the last time in a datetime column containing NaT
Your data is already a column, using 1 and end as indices on it will provide scalars (see the edit above). ReadSS = readtable('...

9 months ago | 0

| accepted

Answered
How to split a 2xN matrix into multiple 2x2 matrices?
%Assuming N is a multiple of 2 y = randi(10, 2, 16) %Reshaping into 2x2 blocks y = reshape(y, 2, 2, []) z = y(:,:,1); for k...

9 months ago | 2

| accepted

Answered
How can I replace data on the axis to become u horizontal and y vertical?
Use - plot(u1,y,'-',u2,y,'--',u3,y,'-.',u4,y,':','LineWidth',2) Note the syntax for plotting x and y data using plot is - ...

9 months ago | 0

Answered
Not able to plot a particular relation.
Remove all the "syms" call. They are not required.

9 months ago | 1

| accepted

Answered
How to export script to text file ?
export() does not support writing data into files. Use writematrix instead - a = "good"; b = "morning"; c = "babynumber"; ...

9 months ago | 0

| accepted

Answered
Having issues with plotting and supposedly there is a size problem?
(I assume that you have written this code for an assignment, which requires the variable x to be of size [1 200], which should b...

9 months ago | 0

| accepted

Load more