Answered
How to use IF statements to find data greater than or equal to a certain amount
see below for a demonstration Time = [1 2 3 4 5 6 7 8 9]'; Capacitance = [0.3 0.5 0.8 1 1.3 1.4 1.2 0.9 0.5]'; MyTable = ta...

ongeveer 2 jaar ago | 1

| accepted

Answered
I get wrong logic while I compare two datetimes
Note that isbetween(t,tlower,tupper) is used to check the following logic: tlower <= t & t <= tupper. See below for the code ru...

ongeveer 2 jaar ago | 1

Answered
Connecting dots with spline or polinomial on an image to process it later
There are multiple ways to do this, here is one example using a file exchange function to subsaple the spline and make a smooth ...

ongeveer 2 jaar ago | 0

Answered
How to create a counter to store multiple solutions
Since you have a double loop, the easiest method will be to add a variable e.g. counter. Initialize it to zero, and then add 1 t...

ongeveer 2 jaar ago | 0

Answered
compare 1X6 cell data with Structure
you can use the contains function do determine if the desired name is in the folder name. See below for the procedure. The resul...

ongeveer 2 jaar ago | 0

Answered
Can't get my code to execute
There were some minor mistakes, see below for the code with inline comments to explain the differences. A = 1.325; B = 3.7; ...

ongeveer 2 jaar ago | 0

| accepted

Answered
How to print multiple Values using sprintf In matlab
This is due to the amount %d you have used. Only use 2 of them for DS Value and 19 for DS Length update added a 'print string' ...

ongeveer 2 jaar ago | 0

Answered
Getting dimension indexes based on element index
You can use the ind2sub function for this (link --> Convert linear indices to subscripts - MATLAB ind2sub (mathworks.com) ) See...

ongeveer 2 jaar ago | 0

| accepted

Answered
How to extract a string before a number?
You can use the regexp function to find the indexes for the numbers. Then you can split the char array using that index (minus o...

ongeveer 2 jaar ago | 0

Answered
Sum selected columns of a matrix
One approach is shown below, there are some comments to explain the steps. A = [0.0486947932834768 0.590504451038576 0 0.057986...

ongeveer 2 jaar ago | 0

| accepted

Answered
Unexpected result at interpolating values from scattered data
You could try another approach, by first fitting a curve trough the points of the two lines. Then evaluating those line alone eq...

ongeveer 2 jaar ago | 2

| accepted

Answered
Date time conversion fail
From the looks of it, you need to change the months (M) and minutes (m) symbols in your time format to convert the string into e...

ongeveer 2 jaar ago | 0

| accepted

Answered
How to find '1' for the second time in a matrix by row wise
If you don't mind using a loop, you can do this the follwing way: A = [ 0 0 1 0 0 0 0 0 1 1 0 0; 0 0 0 0 0 0 0 0 0 0 0 0; 0 0 0...

ongeveer 2 jaar ago | 1

Answered
did I plot the "r" factor correctly in it?
at first glance you still need to take the absolute value, see below ti = 0; tf = 1E-4; tspan=[ti tf]; y0=[1; 1; 1; 1; 1; 1;...

ongeveer 2 jaar ago | 0

| accepted

Answered
Min between integer and empty array
You can make this work by adding the dimension parameter to the min function, see below X = [1,2,3,4,10,11]; Y = [1,2,3,4,5]; ...

ongeveer 2 jaar ago | 1

Answered
How to plot like the following figure in Matlab?
Yes, to omit some data points you can introduce NaN into the y data. See below for an example. x_data = 1:100; y_data = rand(1...

ongeveer 2 jaar ago | 0

Answered
While loop and optimization
You can change the condition for the while loop to reflect this, see below for an example t = 0.1; t_max = 0.35; while t <=...

ongeveer 2 jaar ago | 0

| accepted

Answered
I am getting error like invalid expression
the error is located in syntax of the run_L_p function. You need to change the numeric values into variables i.e. change funct...

ongeveer 2 jaar ago | 0

Answered
Setting XTicks with Datetime reuslt in an error
you can use datetimes directly as ticks. To make sure that all ticks are shown you can use the xticks command, and for readabili...

ongeveer 2 jaar ago | 0

Answered
Index in position 2 exceeds array bounds (must not exceed 1).
The error is due to the way you are accesing the data, based on you picture the inputs are row vectors. IS is a 1x6 vector. Howe...

ongeveer 2 jaar ago | 0

Answered
How to split a string and make multiple rows from the original data for each split?
Hi, there are several methods to do this. One way is to create an index vector and use this to copy the variable. See below :) ...

ongeveer 2 jaar ago | 0

| accepted

Answered
For Loops using functions
if you do not want te keep the data from each iteration you can simply overwrite it i.e. use the same variable as input and outp...

ongeveer 2 jaar ago | 0

| accepted

Answered
How to flot the function f(x,y)=(x^(2)+y^(2)) ℯ^(y^(2)-x^(2))
Hi, you can use the procedure below to investigate the range you are interested in. % create the function Fun = @(x,y) (x.^2+y...

ongeveer 2 jaar ago | 0

Answered
How do I add data from one table to another?
Hello, you can simply append the tables, see below for an example Var1 = ["A";"B";"C";"D";"E"]; Var2 = [1;2;3;4;5]; Var3 = lo...

ongeveer 2 jaar ago | 0

Answered
Write matlab code for the following algorithm
I'm not familiar with the algoritm, so it could still have some mistakes left... However, i was able to identify a couple of mi...

ongeveer 2 jaar ago | 0

| accepted

Answered
How set table column to modified data?
See below, you can first extract the column names from the table. And use these as index during the loop. loadfile = load(websa...

ongeveer 2 jaar ago | 0

| accepted

Answered
How to find X and Y coordinates of maximum gap between curves?
It depends on what you mean with the gap, notice that you plot it on a logarithmic axis. As a result from a graphical point of v...

ongeveer 2 jaar ago | 3

| accepted

Answered
i need the curve of this fourier series
see below for a demo on how to set this up % set up the x values x = linspace(-3*pi, 3*pi, 1e3); % assume 10 terms for the ...

ongeveer 2 jaar ago | 0

Answered
Match numbers to allocate text
you can use the categorical command to do this: y = [12 13 19 24 21 12 12]'; B = categorical( y, [12 13 19 21], ["A" "B" "C"...

ongeveer 2 jaar ago | 0

| accepted

Answered
How to build a 3d map from raw data?
If you want to plot the curves in 3D, you can use the plot3 command. See below for an example: % read the data opts = spreadsh...

ongeveer 2 jaar ago | 0

Load more