Risposto
Fill color inside stair.
The stairs plots are relatively straightforward to work with, however it is necessary to get their outputs in order to plot the...

circa 2 anni fa | 2

| accettato

Risposto
To RESHAPE number of elements must not change
An alternative to reshape that you may want to use instead is the Signal Processing Toolbox buffer function. With a vector inpu...

circa 2 anni fa | 0

Risposto
How to datasample exponential data without losing the exponential decay?
Your data are not exponentially distributed, however they are convincingly lognormally distributed. They do not have a corres...

circa 2 anni fa | 2

| accettato

Risposto
How i get a graph that i attached here with this matlab code?
One problem is that ‘term4’ and therefore ‘u2’ and ‘u’ should be functions of ‘phi’ and they are not originally. However chang...

circa 2 anni fa | 0

Risposto
How To Create a Space Between Edge of a Plot and The Y-axis LineTick?
No data,m so I can’t run your code. That aside, try this — x = 0:0.1:10; y = randn(size(x)); figure plot(x,y) grid ...

circa 2 anni fa | 0

Risposto
Plotting multiple datasets on one plot
I have no idea what your data are. The red plots are plotted last, so if the values are similar, it is likely that they are ...

circa 2 anni fa | 0

| accettato

Risposto
how to put a bar above a letter in MATLAB equation?
You have to specify 'Interpreter','latex' as well. text(0.5,0.5,'$\bar{x}$', 'Interpreter','latex', 'FontSize',20) .

circa 2 anni fa | 0

Risposto
Add a title to a group of 4 subplots centred at the top
Use the sgtitle function (introduced in R2018b). It works with subplot and tiledlayout figures.

circa 2 anni fa | 0

Risposto
hi, find the value of x theoretically?
The symbolic approach will not work, however I left the symbolic code in (commented out) in case you want to experiment with it....

circa 2 anni fa | 0

Risposto
How to fit kinetic model to estimate kinetic parameter from experimental data
I got this to run (there were a number of coding errors, most of which I corrected). However it takes too long to run here, so ...

circa 2 anni fa | 1

| accettato

Risposto
How to fit a nonparametric distribution to a sample of known percentile values
The empirical cumulative distribution function ecdf would likely bea appropriate here. (There is also ecdf however it seems les...

circa 2 anni fa | 0

Risposto
How to give range of cells different variable names?
It might help to have the file. Otherwise, conbbsider specifying the variable names as (for example): TABLE.Properties.Vari...

circa 2 anni fa | 0

| accettato

Risposto
Finding multiple Matrix in a txt file
This works. It is not as elegant as I would like, however I cannot imagine any other way to parse this file. The variable na...

circa 2 anni fa | 0

Risposto
how i can modifiy the code to make the bandwith of fft less ?
Add: xlim([0 1.5E+3]) after the plot call to distinctly see the two peaks. Tweaked code — % Read the CSV file, automatic...

circa 2 anni fa | 0

Risposto
How to draw a semi-circular heat map?(怎么画半圆形的热力图)
The general approach would be to create a rectangular array first, and then use the cart2pol function to create it as a semicirc...

circa 2 anni fa | 0

Risposto
how to azimuthally average a N*N data ?
I seriously doubt that what you want to do is possible, simply because your data do not work that way, Likely the best you ca...

circa 2 anni fa | 0

Risposto
finding the minimum of a function input with a parameter
If you want to constrain the optimisation, one approach sould be to use the Optimization Toolbox fmincon function. Example —...

circa 2 anni fa | 0

Risposto
Using ss2tf when your matrices are variables without values yet
I would not use the Symbolic Math Toolbox for this! For undefined variables, use anonymous functions for them, and then pass ...

circa 2 anni fa | 0

| accettato

Risposto
Parse error at observed data
It took a few minutes to determine what the problems are with this (there were several). I got it to work. Most of the probl...

circa 2 anni fa | 0

Risposto
How do I find the width of a curve at 1/e^2 but there are multiple points at this value
The second plot image and your code do not appear to provide the same results, at least with respect to the plot. That aside,...

circa 2 anni fa | 0

| accettato

Risposto
ways to calculate non-linear correlation between two time series in MATLAB?
Your question is ambiguous. First, be certain that both time series are sampled at the same time points. You can use interp1 ...

circa 2 anni fa | 0

Risposto
how to plot the graph
There is no need to convert it to Excel. It is only necessary to tell readmatrix (introduced in R2019a) that it is a text file,...

circa 2 anni fa | 0

| accettato

Risposto
Transfer Functions on Biologic Data Sets
The data do not appear to have anything in common, and several are missing. (The plots here are sorted by the independent varia...

circa 2 anni fa | 0

Risposto
EEG data Visualization for .mat file
There are a few ways to do this. Two approaches — Fs = 500; L = 250734; t = seconds(linspace(0, L-1, L).'/Fs); EEG = ran...

circa 2 anni fa | 0

| accettato

Risposto
I open Matlab after a computer crash and the editor is clear . Is there a file which stores which files were open prior to the crash?
The only documentation that I can find for the MATLAB Edittor is matlab.editor Settings. I am not certain where that informat...

circa 2 anni fa | 0

Risposto
convert a cell Array into another cell
This takes too long to do the entire (1x490) cell array, so I just create an arraya tenth of that. Try this — for k = 1:4...

circa 2 anni fa | 0

Risposto
Determine the indice of real maximum using accumarray function
I’m not certain what you want or how the .mat file figures into this (since you don’t have a load call or relevant code to deter...

circa 2 anni fa | 0

Risposto
How to solve this with the help of fplot
A few details are missing ... syms t f(t) = sin(2*pi*t); figure fplot(f, [0 5]) grid yline(0,'--r', 'The roots are wher...

circa 2 anni fa | 0

Risposto
multiplying a function handle by a constant
‘... how do I multiple the function handle by the constant"h" with out getting the error "Operator '*' is not supported for oper...

circa 2 anni fa | 0

Risposto
writematrix with tab delimiter inconsistently producing delimiters
It might be possible for you to verify whether the tab characters are ther or not using the funciton after creating the file. ...

circa 2 anni fa | 0

| accettato

Carica altro