Answered
How to change the graph type
I believe that this is reasonably close — num_simulations = 10000; %Common parameters Discount_Rate_min = 0.06; % assu...

2 years ago | 1

| accepted

Answered
How can I plot the streamlines in all region around the inside sphere ?
One approach is to change the code to add a patch object in this part of it (add ‘pv’ and ‘cv’ and the patch call): set(polar(...

2 years ago | 1

| accepted

Answered
matlab 'unique' is skipping rows with data
I am not certain what the problem is, however if you want to test for more than one value in a row, specify that with the 'rows'...

2 years ago | 0

Answered
How to convert 30s daily data into hourly data using MATLAB?
It would be nice to know what version you are using. Are you supposed to accumulate (for example take the mean) of the data ove...

2 years ago | 0

| accepted

Answered
Script of importing data not working with no warning or error
The function does not produce any outputs. You will need to declare: global ExperimentalIVData in your calling script to g...

2 years ago | 1

| accepted

Answered
Butterworth Bandpass filter implementing
There is actually not enough information provided. However in my experience, a generally accepted sampling frequency for EEG is...

2 years ago | 2

Answered
calculate the volume of a patch object
Perhaps first using alphaShape and then volume will do what you want.

2 years ago | 0

Answered
I cannot get fplot to plot my piecewise function past an x-axis value of 5
The default independent variable limits for fplot are (-5,5). If you want a larger or different independent variable value, te...

2 years ago | 0

Answered
Fit of a function with a weighted sum
@Camilla Bandinelli — Responding to your email, first thank you for clarifying my concerns, especially with respect to the ‘trai...

2 years ago | 0

Answered
csv reading related matter
Thje problem is your not taking full advantage of MATLAB table arrays and everything they can do. Try this — Uz = unzip('2...

2 years ago | 0

| accepted

Answered
Plot label with text function
All the ‘matched_data.intensity’ entries are all set to 1, so they all plot at 1 rather than the peak values. A way to correct ...

2 years ago | 0

| accepted

Answered
Changing colour of regression line in a scatter plot
Using the lsline function to draw the linear regression — x = (0:99); y = 3*x + randn(size(x))*25 + 15; figure plot(x, y...

2 years ago | 0

| accepted

Answered
Polarplot, how to delete outmost circle (axis) and message
The extra circle outside the magnitude 1 circle is the result of specifying this: P.MagnitudeLim=[0 1.05]; If you remove that...

2 years ago | 0

| accepted

Answered
Averaging across subjects EEG
I do not know what your approach is. My approach in Combining repetitive curves into one average curve would likely work with...

2 years ago | 0

Answered
Reading and finding string in a text (.TXT) file containing string and numerical data
The file appears to contain two duplicate horizontally-concatenated matrices, other than for the first column. This is not an e...

2 years ago | 0

| accepted

Answered
i want to export 3d stl format image into matlab and want to see in matlab
The stlread function is another option.

2 years ago | 0

| accepted

Answered
Inconsistent date/time stamps, *possibly* due to time zone
I can’t determine what the exact problem is (I don’t have access to your computer, and I am not certain that I completely under...

2 years ago | 1

| accepted

Answered
How to calculate the highest degree term with its coefficient in this expression with respect to t?
I am not certain that what you want to do is possible. The closest I could get to it is to use a taylor series approximation ...

2 years ago | 0

| accepted

Answered
My lsqcurve fit is not working due YDATA and function value sizes are not being equal. (but they are?)
There were several problems. First, the objective function arguments were reversed, and the data and calculations returned by i...

2 years ago | 1

| accepted

Answered
hello dears, how to fix "quiver3 error V and W must be the same size" error
The value of ‘Bz’ is a scalar, while all the other arguments are (20x20) matrices. Setting: Bz = Bz*ones(size(By)); solves...

2 years ago | 0

Answered
Do not know how to normalize gait cycles from 0-100%
To normalise the time variables within a gait cycle, divide them by the heel-strike time differences in each cycle. The same ap...

2 years ago | 0

| accepted

Answered
can you please draw a pcolor plot for given data
I suggest using image rather than pcolor, because image displays all the data, while pcolor does not, displaying everything exc...

2 years ago | 0

| accepted

Answered
"Invalid calling syntax for the "ssest" command."
The syntax is corect, however beginning with R2022b. From the documentation: R2022b: Time-domain estimation data is accepte...

2 years ago | 0

Answered
I run this code on MATLAB , while ruunning the code it give the plot but not the figure
Without the data, it is not possible to run the code to determine what the problem might be. The code is most likely creating...

2 years ago | 0

Answered
Protein-ligand binding kinetics
The problem may be that the integration time is too long, since the complex reaches saturation in about 5 seconds (assuming tha...

2 years ago | 0

| accepted

Answered
FFT from CSV data file
This corroborates previous analyses. What other information do you want from the data? % S = fileread('test_amplitude_50.2 ...

2 years ago | 2

Answered
Error using plot for Fourier series
The fplot function is usually best for symbolic functions. I am not certain what you want to plot. Try this — syms x k ...

2 years ago | 0

Answered
Non-linear axis plotting
Probably the closest you could get to that is the Statistics and Machine Learning Toolbox probplot function. I do not have th...

2 years ago | 1

Answered
how to renew my matlab 2023b
I suggest that you Contact Support since they can direct you to the appropriate contacts or other resources.

2 years ago | 0

Answered
how I edit layout figure according my picture??
If you used tiledlayout, change the initial declaration from: tiledlayout(1, 10) to: tiledlayout(2, 5) .

2 years ago | 0

Load more