Réponse apportée
Adding a column to a UITable and then using it.
app.StimInputTable.Data.Var4 = app.StimInputTable.Data.Var3./app.StimInputTable.Data.Var2; % ^^^^^ you we...

plus d'un an il y a | 0

| A accepté

Réponse apportée
I want to write data at the end of every nth line of a text file
str = readlines(filename); str(4:4:end) = str(4:4:end) + "c"; writelines(str,filename) where "filename" is the abso...

plus d'un an il y a | 1

| A accepté

Réponse apportée
Questions about the input X of pcolor and contourf.
I interpret the pcolor documentation as saying that a rectangular grid and a parametric grid are separate special cases, so the ...

plus d'un an il y a | 0

Réponse apportée
With a ribbon plot, how to make the ribbons go along each matrix row instead of each column?
If you have some leeway on the x- and y-axis tick locations, you can use ribbon with the tranpose of Z and just alter the axis l...

plus d'un an il y a | 2

Réponse apportée
Save graphical objects in .mat file for later use
You can use copyobj to copy an existing graphical object (e.g., scatter plot) to another parent (e.g., axes). Here's an example...

plus d'un an il y a | 0

| A accepté

Réponse apportée
With a ribbon plot, how to make the ribbons go along each matrix row instead of each column?
Z=[0,1,2,2; 1,2,3,3; 2,3,4,4; 3,4,5,5]; [m,n] = size(Z); Y = (0:m-1).'; X = (0:n-1).'; Original ribbon plot, for reference...

plus d'un an il y a | 1

Réponse apportée
How can I make a graph like this for ANOVA 2-Way
The code that constructs bpdata takes the table data for each patient in turn and puts it together into a 2-row matrix with a co...

plus d'un an il y a | 0

| A accepté

Réponse apportée
How to programmatically change the command window text size?
s = settings; s.matlab.fonts.codefont.Size.PersonalValue = 16;

plus d'un an il y a | 1

Réponse apportée
agrupacion de datos de una tabla
% first, I construct a table similar to yours N = 152709; MeasID = cellstr(char(64+randi(26,N,4))); Time = datetime(randi(30,...

plus d'un an il y a | 0

| A accepté

Réponse apportée
How to count the number of non-nan values for combination of multiple variables
% Initial table a = [1;1;1;2;2;2;2]; b = [660; 661; 661; 663; 663; NaN; 663]; c = [1;2;2;5;5;NaN;6]; d = [11;12;NaN; 13; 14;...

plus d'un an il y a | 0

| A accepté

Réponse apportée
What does the syntax matrix(vector) mean?
Indexing. https://www.mathworks.com/company/technical-articles/matrix-indexing-in-matlab.html

plus d'un an il y a | 0

| A accepté

Réponse apportée
Unrecognized function or variable 'RK'.
https://www.mathworks.com/matlabcentral/answers/96005-why-do-i-get-the-error-unrecognized-function-or-variable

plus d'un an il y a | 0

Réponse apportée
How do I draw contours on multiple surfaces so that they line up
Maybe specifying a vector of contour levels, rather than the number of levels, is appropriate. For example: lev = 0.01:0.01:0.0...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Error using feval Function to evaluate must be represented as a string scalar, character vector, or function_handle object.
Use the 's' (or "s") option in input() in order to store the result as text without evaluating it: fname = input('\n M-file con...

plus d'un an il y a | 0

Réponse apportée
A problem with a code that works as it is but gives an index error when is used inside a function
Based on the error message, "Index in position 2 exceeds array bounds. Index must not exceed 100. Error in cleaner (line 118) z...

plus d'un an il y a | 0

Réponse apportée
How can I write a 'for' loop that sums up all elements of a vector?
a = 1:5; total = 0; for ii = 1:numel(a) total = total+a(ii) end

plus d'un an il y a | 0

Réponse apportée
Iterate over struct with length>1, with multiple fields
teststruct = struct('name', {'Alice', 'Bob', 'Eve'}, 'age', {24, 45, 35}) names = {teststruct.name} ages = [teststruct.age] O...

plus d'un an il y a | 0

| A accepté

Réponse apportée
How to plot RGB histogram of an image into a single 3D slice plot?
image = imread('peppers.png'); R = image(:,:,1); G = image(:,:,2); B = image(:,:,3); subplot(2,2,1); imshow(image); titl...

plus d'un an il y a | 2

| A accepté

Réponse apportée
i have a vector in lenght 5, i need to check if a sum of 2 or more elements in the vector is equal to another element at the same vector how to do that?
v = [10 5 13 15 28]; m = dec2bin(0:2^numel(v)-1)-'0'; m = m(sum(m,2) >= 2,:); [ism,idx] = ismember(m*v.',v); idx = idx(ism...

plus d'un an il y a | 3

Réponse apportée
Matrices à coefficients dépendant d'un paramètre
One option: F = @(t)[0,1;t,t^2]; M = F(1) M = F(-1) M = F(2) Another option: syms t M = [0,1;t,t^2]

plus d'un an il y a | 0

| A accepté

Réponse apportée
Fill in the missing time stamps in measurment data when the system is runnign but not when the system was OFF
Data1 = readtimetable('Data1.xlsx'); Data2 = readtimetable('Data2.xlsx'); Data3 = readtimetable('Data3.xlsx'); Maybe one of t...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Arrays have incompatible sizes for this operation error while checking dropdown.value not equal to a char value
Don't use == or ~= to compare character arrays, use strcmp, i.e.: if ~strcmp(app.SelectBatteryDropDown.Value,'none') because =...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Function file doesn`t work
T = readtable('Lab5_R_100_MOhm.txt','VariableNamingRule','preserve') f = T.(1); A = T.(2); Ph = T.(3); figure tiledlayout...

plus d'un an il y a | 0

Réponse apportée
re-indexing slices of a matrix
A = [1 4 4 4 3 4 6 3 3 3 2 1 3 1 7 2 5 2 9 2 5 1 4 1]; A(:,2) = 1+c...

plus d'un an il y a | 0

| A accepté

Réponse apportée
I am trying to figure out how to use writetable instead of xlswrite, but the feature is converting my numbers to text. Headers are text.
Excel_Sheet = array2table(Excel_out,'VariableNames',Excel_head); writetable(Excel_sheet,'C:\D_Local\MATLAB\AAA\PhaseII_CA_out.x...

plus d'un an il y a | 0

Réponse apportée
Selectin elements that satisfy a certain condition with modular arithmetic
N = 6; m = 3; M = dec2base(0:m^N-1,m)-'0'; idx = mod(M(:,1)+M(:,4)+M(:,5),m) == 1 ... & mod(M(:,2)+M(:,5)+M(:,6),m) ...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Not recognizing any text files in folder using dir(fullfile)
Try folder_path = 'C:\users\power\downloads\star capillary files\'; instead of folder_path = 'C:users\power\downloa...

plus d'un an il y a | 0

Réponse apportée
How can I use selections from multiple uidropdowns as function inputs?
Here's an example of how it could work: function uidropdown_demo() T = array2table([(1:25).' [10 100].*rand(25,2)], ... ...

plus d'un an il y a | 0

Réponse apportée
Show coordinates for a 2D point in a table cell
One way to display a vector in a single cell of a uitable is to make it into a string: app.PointsTable.Data = table( ... '...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Error: Data must be numeric, datetime, duration, categorical, or an array convertible to double.
tic close all; clc; % Declaring Theta and Phi Variables theta = 0:0.1:pi/2; % Phi Values phi_E_Plane = 0; phi_H_Plane ...

plus d'un an il y a | 0

| A accepté

Charger plus