回答済み
different view in uitable app designer
Experimentally: It appears that the formatting of rows in the table works on some kind of buffer system having to do with which...

9ヶ月 前 | 0

回答済み
How do I get my code to output each output value with the different input values. error message is Out of memory. The likely cause is an infinite recursion within the program.
% Define Reynolds numbers and epsilon/D values Re_values = [10000, 100000, 1000000, 10000000]; epsilon_over_D_values = [0.0...

9ヶ月 前 | 1

回答済み
MATLAB code for the expression 1*sin(2*pi*14*t) + 7*cos(2*pi*16*t) + 4*cos(2*pi*10*t)
See plus, + pi sin times, .*

9ヶ月 前 | 0

回答済み
I need to cancel my pending order. I do not need the signal processing toolbox.
Unfortunately Mathworks Sales does not read this resource, and the people who answer questions here are volunteers, very few of ...

9ヶ月 前 | 0

回答済み
How to find values in a table
%let your table be named T column_with_key = 1; column_to_examine = 3; value_to_lookfor = 100; value_to_extrapolate = 95...

9ヶ月 前 | 1

| 採用済み

回答済み
Trying to Solve system of 2 Equations "Unable to find explicit solution" Code In Description
syms a1 a2 a3 r_1 r_2 alpha E a3 = (alpha*E)/(8*pi); eqn = [2*a3*log(r_1) + (a1/(r_1)^2) + a3 + 2*a2 == 0,... 2*a3*log(r_...

9ヶ月 前 | 1

| 採用済み

回答済み
How to create animations with scatterplot and scatter?
time_vec = 1:1:duration; That is not correct. It should be time_vec = (0:num_samp-1)/Fs;

9ヶ月 前 | 0

回答済み
When I close the figure or eeglab, the program becomes unresponsive
This is a known problem with MacOS Monterey and Sonoma that affects Apple Silicon systems. The workaround is described at https...

9ヶ月 前 | 1

| 採用済み

回答済み
i want to find k for different values of w, k will be obtained from the determinant of the matrix ,this is a sample my actual code is 8 by 8 matrix ,please help
You are looping for w but you are using j as your index. The default value for the variable j is sqrt(-1) so you are trying to ...

9ヶ月 前 | 0

| 採用済み

回答済み
How to use switch statement with list box?
When you ask to cancel then indx is empty, []. The empty matrix is not considered to be a scalar -- a scalar is 1 x 1 but [] is ...

9ヶ月 前 | 0

回答済み
search sepecific file and copy to target file
file1 = char({dirOutput1.name}'); That creates a char array -- with shorter individual entries padded with spaces out to the le...

9ヶ月 前 | 1

| 採用済み

回答済み
Expected a value representable in the C type 'int'
You are taking whatever arrives in t and multiplying it by 10 and adding 1, and then you try to use that as an index into the zd...

9ヶ月 前 | 0

回答済み
how to use ga function to calculate a matrix
When you ask for 13 variables, your function will get passed a row vector 1 x 13. Your code assumes that it will receive a colum...

9ヶ月 前 | 1

| 採用済み

回答済み
how visualize it correctly in app designer
T0=table(c,string({Sis.Sistema}'));

9ヶ月 前 | 0

| 採用済み

回答済み
How to create a "contour" plot with a varying X and Y vector values?
contourf() is not applicable to volumes. To contour on volumes, use isosurface -- usually with transparency so you can see "insi...

9ヶ月 前 | 0

回答済み
Regarding Developing and Launching a Commercial Application with a MATLAB Commercial License
Is it possible to develop a commercial application by purchasing a MATLAB Commercial License? Yes. As long as the application i...

9ヶ月 前 | 1

回答済み
why my theta is equal to zero?
deval() returns a matrix with one row for each state variable, and one column for each time evaluated at. You are using linear...

9ヶ月 前 | 0

回答済み
Question about how to use drawline to record line segment lengths in real time
Use wait to wait until the user finishes with the ROI. After that you can examine roi.Position and save that to an appropriate v...

9ヶ月 前 | 0

回答済み
Simplify symbolic division abs(Z)/Z
syms z syms zr zi real u = abs(z)^2/z us = simplify(subs(u, z, zr + 1i*zi)) After which you would need to substitute conj(z)...

9ヶ月 前 | 0

回答済み
Please help, I have no idea how to do this integral in matlab
syms a_0 positive syms theta real; assumeAlso(theta >= 0); theta_0 = sym(30.5); F = 1/(sind(theta_0) - sind(theta)) a_0 = ...

9ヶ月 前 | 1

回答済み
I get these results. How can I make the small decimal zeros?
tol = 1e-7; s = tf('s'); G = (0.004 * s^4 + 7.426e-18 * s^3 + 3.2 * s^2 + 5.7077e-15 * s) / ( s^4 + 110 * s^3 + 1020 * s^2 +...

9ヶ月 前 | 1

回答済み
PCSHOW - three or more point clouds
When you call pcshowpair() you can have it return an axes handle. If you turn hold "on" for that axes handle, then you can do mo...

9ヶ月 前 | 0

| 採用済み

回答済み
How to append text and numbers into a title
See subtitle Or use start_month = 12; start_day = 1; mth = month(datetime(1, start_month, 1), 'Name'); % To get the name of ...

9ヶ月 前 | 1

| 採用済み

回答済み
How to solve these non-linear equations?
There might be additional solutions. Q = @(v) sym(v); syms a b positive syms c real i1 = Q(310); i2 = Q(34964) / Q(10)^2;...

9ヶ月 前 | 0

回答済み
Whenever i try so solve for 's' i get the same error:
Never eval() a symbolic expression or symfun or symbolic matrix expression. There is no documented meaning for eval() of any of ...

9ヶ月 前 | 0

回答済み
How to calculate median matrix of many .tif files with MATLAB?
format long g master_size = [87, 207]; unzip Test.zip files = dir('*.tif'); filenames = fullfile({files.folder},{files.nam...

9ヶ月 前 | 2

| 採用済み

回答済み
Convert char to table
str2num preferably with restricted coordinates = '[446 154;445 155;444 156;443 156;442 156]'; C = str2num(coordinates, 'Evalua...

9ヶ月 前 | 0

| 採用済み

回答済み
Error while generating Mex model in MATLAB for Xilinx fft Verion 9.1 IP
use your Linux package manager to install gmp and gmp-devel

9ヶ月 前 | 0

| 採用済み

回答済み
Can parfor run a series of GPU programs simultaneously?
GMMNLSE_propgation_func must currently contain an invocation of a Simulink model. You need to configure that to run with sim() i...

9ヶ月 前 | 0

| 採用済み

回答済み
How to change the column pixel values of a DICOM image and assign new values columnwise)?
multfactor = repelem([0.15, 0.18, 0.04, 0.23], [130 100 100 54]); %modify factors appropriately newimage = oldimage .* multf...

9ヶ月 前 | 0

| 採用済み

さらに読み込む