回答済み
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...

3年以上 前 | 1

| 採用済み

回答済み
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...

3年以上 前 | 1

回答済み
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 ...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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; ...

3年以上 前 | 0

| 採用済み

回答済み
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' ...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 2

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 1

回答済み
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;...

3年以上 前 | 0

| 採用済み

回答済み
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]; ...

3年以上 前 | 1

回答済み
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...

3年以上 前 | 0

回答済み
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 <=...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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 :) ...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 3

| 採用済み

回答済み
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 ...

3年以上 前 | 0

回答済み
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"...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

さらに読み込む