Answered
How can I rectify the issue of figure not displaying curve the right way?
I am not exactly certain what the problem is (not enough information), however increasing the LineWidth could be a solution, fol...

3 months ago | 0

Answered
fill function sometimes working and sometimes not working, why?
I generally use patch rather than fill because I understand patch and I have more control over what it does. I'm not certain ...

3 months ago | 0

| accepted

Answered
Plot not showing the desired markers and does not match the legend
It is difficult for me to understand what you're doing, although I believe this is close to what you want -- % ----- Experimen...

3 months ago | 0

Answered
Whis my root locus plot showing me a blank figure?
It works here and in MATLAB Online for me -- sys = tf([2 5 1],[1 2 3]); rlocus(sys) The problem may be your browser. Try ...

3 months ago | 0

Answered
Range FFT Magnitude Too High – Help Needed to Get Proper Y-Axis Magnitude
@A -- With respect to your earlier Comment, a FIR filter is not the best choice if you need only one filter. I would suggest ...

3 months ago | 0

| accepted

Answered
Help with Plotting the Envelope of a Scatter Plot in MATLAB
The boundary function or related functions can probably help with this. Since the data appear to have stepwise y-values, anot...

4 months ago | 1

Answered
Is it possible to add a secondary y axis while using the stackedplot function?
Apparently not. Any provision for creating a second y-axis is apparently not available, even when attempting to 'force' it (t...

4 months ago | 0

| accepted

Answered
curve fitting toolbox is showing installed but when i try to use in my apps pane it display 'no apps installed'. i dont know what to do please help.
First, run these from a script or your Command Window: restoredefaultpath rehash toolboxcache If that does not solve your ...

4 months ago | 0

Answered
Difference between integral and cumtrapz.
They produce the same result if you let them. Try something like this -- x = [-10:0.01:10]'; fx = @(x) x.^2; for k = 1:nu...

4 months ago | 0

| accepted

Answered
Error "Array indices must be positive integers or logical values" occurs at the line [row1, col1, s1] = ind2sub(size(chi_coeff), idx1);
My guess is that you have a variable names 'size' and that is throwing the error. Run this to test that hypothesis: which s...

4 months ago | 2

Answered
Title issues when plotting
Create everything as a string array -- InputSheet = "Plate #1"; Grain{1} = 42 degsign = string(char(176)); n = 1; T_oQlast...

4 months ago | 0

| accepted

Answered
What is the cause of strange "spike" artifacts after IFFT?
The signals are approximately the same lengths in time, however 'Zoom1' has a significantly higher sampling frequency than 'Zoom...

4 months ago | 0

Answered
Please help me to run the surface figure from the attached code
The error is because you are missing a multiplication operator dy(2) = (((rhot/mut)*(a*(muf/rhof)^0.5*(E*F+E^2)+a*(muf/rhof)*w*...

4 months ago | 0

| accepted

Answered
No results from calculations in the command window
I am not certain that I fully understasnd your problem. MATLAB functions have their own workspaces, so variables local to the...

4 months ago | 0

| accepted

Answered
tfest() failed with higher order
One way to estimate the system order with reasonably accuracy from the output signal itself is to calculate the Fourier transfor...

4 months ago | 1

Answered
Plotting Set of Inequalities
It is difficulf for me to interpret what you want to plot. One way to 'include' an area of inequality in a plot is to use the...

4 months ago | 0

Answered
Matlab freezes on startup
That it opens dos.m in the Editor and then freezes could indicate that your startup.m file is telling it to open that file in th...

4 months ago | 1

Answered
How do I turn off the LaTeX interpreter per line in my title within MATLAB?
Probably the easiest way to do what you want would be to 'escape' the underscore lines using backslashes (\) -- figure title([...

4 months ago | 0

Answered
Change width of 2 colorbars in tiledlayout
I am not certain whst result you want. This seems to work -- img_sos = rand(64); img_oar_pixel = rand(64); img_oar_block ...

4 months ago | 0

Answered
How to extract ridges from Time-Frequency transform?
It would help to have your signal. One option could be pspectrum with the 'spectrogram' option. Plot it as a surface, then...

4 months ago | 0

Answered
Calculate the Standard Deviation based on multiple conditions
It would definitely help to have the data, or at lest a representative sample of it. One option would be to use the function, ...

4 months ago | 0

Answered
compiled matlab script where incorrect variables are passing
The '49' is the ASCII code for '1' -- Q = double('1') Mystery solved! You may need to change parts of your code, or perhap...

4 months ago | 0

| accepted

Answered
How to project a line on a surface?
Perhaps something like this using the scatteredInterpolant function -- x = linspace(-3, 3); y = linspace(-4, 4); [X,Y] = ndg...

5 months ago | 1

Answered
How to write a timetable to excel with rowtimes as dates without times?
That is likely a problem with Excel. MATLAB writes the timetable correctly -- m = (1:3)'; dates = datetime(2025,m,15) tt ...

5 months ago | 0

| accepted

Answered
Time-domain response from FRF shows unexpected growth (damped system)
I can make it work by using conj on the first half of 'displ_2' and concatenating that with the original 'displ' vector. Try ...

5 months ago | 1

| accepted

Answered
Error in step size and i dont know why. I need help..... please.
The warning simply means that ode113 has encountered a singluarity in one of your differential equations. It is not obvious to ...

5 months ago | 0

Answered
Blurry and hazy lines in matlab plots.
One option could be to upgrade to 24.04. (I have not had problems similar to the ones you are reporting using 24.04, although m...

5 months ago | 0

Answered
How to fill in the area under the curve
Perhaps something like this -- clc clear all; x=[0.00 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.10 0.11 0.1...

5 months ago | 0

| accepted

Answered
How i crop the image using image processing?
Your data are not easy to work with, and the scribe line yu added does not help! I needed to get into other plot types and do...

5 months ago | 0

Answered
Cannot install Matlab 2006b on my Windows 11 laptop
See System Requirements - Release 2006b That should tell you all you need to know about the reasons that will likely never wor...

5 months ago | 1

Load more