Beantwortet
How to read txt file and put the words on a vector and the numbers in a matrix?
If that is the exact file, readtable is going to have problems with it. Using fgetl and textscan — type('Alexandre_2023_10...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
I have two set data and I want to calculate the area in different x and plot the area curve with respect to X
Perhaps this — x=[1 1.5 1.7 2 2.2 2.6 2.8]; y=[0 2 6 7 8 10 5]; int_y = cumtrapz(x, y); figure plot(x, y, 'DisplayName',...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Drawing a turning tangent on fitted curve
Perhaps this — xvalue = 20:1:30 yvalue = [56.7 59.8 64.8 66.7 66.2 65.2 64.2 63.5 63.0 62.7 62.5] p = polyfit(xvalue, yval...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
How to draw a rectangle around the area that shows an energy variation
It would help to have your data. An adaptive approach using contour3 — Fs = 500; L = 300; t = linspace(0, L*Fs, L*Fs+1)/F...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to make the for loop the length as the array inside the for loop?
You do not need the loop at all. Just use the diff function — x1 = [1e6:20000:5e6]; L = 4e6; % in m D_c = 5000;% in m D1 =...

fast 3 Jahre vor | 0

Beantwortet
Can I create the same FIR filter using two different commands?
Getting the same filter using ttwo differnt methods is probably possible. Comparing a windowed design (using kaiserord here wit...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How can I create a bandpass FIR filter using firpm?
I could not get this to work with firpm, since it apparently only works with lowpass filters. Getting it to work with fir1 i...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
Changing exponential axis scale
I am not certain what the problem is. The approach you took appears to work here (R2023b) — c = 3e+08; % Speed of light in ...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How To solve this equation?
One approach — syms x f = symsum(((5*x+2)^(1/5))/x, x, 1, 1E+3) fvpa = vpa(f) .

fast 3 Jahre vor | 0

Beantwortet
Adding values to a table
One approach (that works) — DateTime = datetime([2020 01 01]) + calmonths(0:5)'; Incidence = randi(10,6,1); tab = table(Dat...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
i want to convert my data to time series.
This is a common problem in biomedical signal processing, and is referred to as creating an ensemble. One example using a photo...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
plot with two variables.
I can’t run the code without the variables. That aside, choose vector ranges for ‘phi_rad’ and ‘phi1_rad’ and use the ndgrid ...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to do weighted least square rgression?
One option is to use fitlm — weight=[18.5204555170429; 24.8007492441765; 21.4204953742493; 12.0007299687922; 5.17482448096073...

fast 3 Jahre vor | 0

Beantwortet
Split data based on column value to write in different sheets in excel
Using accumarray, one line to segment the matrix, then one loop to write the file sheets (and a second loop to verify the result...

fast 3 Jahre vor | 0

Beantwortet
How to make an automated and updated legend for ts step response graph
The Control System Toolbox plots are characteristically difficult to work with. The best option would be: [y,tOut] = step(F...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How can I replay the results I got with the pspectrum function on the spectrogram function?
You can’t equate the pspectrum and spectrogram function outputs because the units are different. The spectrogram function produ...

fast 3 Jahre vor | 0

Beantwortet
Summing elements in an array between uneven date intervals
I am not certain what you want. If I am readiing the file correctly and converting the dates correctly (both 'excel' and 'posix...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How performing FRF for complex functions
Try this — s = tf('s'); H = (1257*s + 3.736e05) / (s^2 + (1554 - 2e02i)*s + (3.736e05 - 2e02i)) opts = bodeoptions; opts....

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Simple Vector Indexing Question
Put all the indices inside one set of square brackets — Vector = 1:20; activeVector = Vector([3:7 10:15]) This is a simplifi...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
overlap logical matrices in MATLAB
Use the logical or (|) function to accumulate the matrices — dis_threshold=0.4; a = false(5); ...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Dificulty plotting graph of function for basic bending moment graph
Use the second argument to fplot to limit the independent variable range — %bending moments calculator syms X %force 1 F1=5...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Polar Scatter Plot using 3 Data Set
Try this — th = linspace(0,2*pi,20); r = rand(1,20); a=[1:1:20]; sz = 75; % polarscatter(th,r,sz,a,'filled') [x,y,z] ...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How can I know which ditribution is appropriate to fit on the generated histogram? and, How can I do that?
I would use the histfit function, then if the fit appears to be acceptable, use the fitdist funciton to estimate the parameters....

fast 3 Jahre vor | 0

Beantwortet
Can MATLAB plot hypergeometric functions?
I do not understand what you need to plot because I do not understand your notation, however the Statistics and Machine Learning...

fast 3 Jahre vor | 0

Beantwortet
Error in FFT calculation
The value for ‘L’ is 7500 and for ‘L1’ is 601. If you change: P21 = abs(Y1/L1); to P21 = abs(Y1/L); you will get the ex...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
Lorentzian fit for defined peak
First, locate the peaks using findpeaks or islocalmax to get the peak values (amplitudes) and locations. The findpeaks function...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
Need help on how to CREATE a text file in matlab?
‘Do I use fopen or table function?’ It depends on what you want to do. If you have a numeric array with column text headings, ...

fast 3 Jahre vor | 0

Beantwortet
Loading and Plotting .mat file
If you want to plot the ‘wl’ field in each one, this works — Files = dir('*.mat'); figure tiledlayout(3,3) for k = 1:nume...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Why derivatives using matlab symbolic for a simple fuction produces different results?
They both produce the same results when I run your code — syms x y %define function z=x+1i*y; theta = angle(z); Ig1=exp(-t...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Continuous vs discrete time
It is difficult to follow what you are doing as you describe it. It might be best to use the Control System Toolbox functions i...

fast 3 Jahre vor | 0

| akzeptiert

Mehr laden