Respondida
how to generate cell array based on the size of it.
I am bit confused what you mean by should not have 3 by leaving 2 and should not have 2 by leaving 1. I assume you just want t...

más de 4 años hace | 0

| aceptada

Respondida
How to generate a Gaussian random variable?
You can use the function randn to generate the random variable as desired. a = 2; % standard deviation b = 0; % mean nrow = 1...

más de 4 años hace | 0

Respondida
Could anyone help me how to simplify the following code.
I am not sure why you are creating a nested cell array. However you can do it like this. B = arrayfun(@(x,y)cell(x,y),ones(15,1...

más de 4 años hace | 0

| aceptada

Respondida
if statement for two arrays
I cannot comment on the chemical engineering side. However assuming that your data have multiple columns and you only want to re...

más de 4 años hace | 0

Respondida
Is there a Layer to perform L2 Normalization in CNN?
In matlab you can train a SSD Network using the trainSSDObjectDetector Function in computer vision toolbox. Some documentation ...

más de 4 años hace | 0

Respondida
Configure multiple lines of same Line Properties in a single line?
I think the best you can do is as follows. lines = line([0 0 0 5; 5 5 0 5],[10 0 0 0; 10 0 10 10],'linewidth',3,'color','r','l...

más de 4 años hace | 0

| aceptada

Respondida
Share one callback with multiple elements and pass on the respectively number in the callback
Yes you can assign the same callback to multiple objects. The above code you shared is fine. However you can access the value ...

más de 4 años hace | 1

| aceptada

Respondida
Synchronize sensor data from multiple sensors
The easiest way to do this is to import your data as timetables and then use the built in synchronize function. Details and exam...

más de 4 años hace | 0

Respondida
Store .txt files from different subfolders
You can use the dir function to list all the txt files in the folder and its subfolders. mytopleveldir = "C:\path\to\my\topleve...

más de 4 años hace | 0

Respondida
Problem accessing member in OOP
You need to change this to a handle class instead of a value class. classdef LoginDialog < handle

más de 4 años hace | 0

Respondida
Plotting data at a fast rate in app designer
Similar to how you are storing UIAxes in the app properties you need to store the plot and the heatmap in the properies as well....

más de 4 años hace | 0

Respondida
Transparency violation error. 'save' in 'parfor' loop
How about you define two save functions function mysave1(sp2,CSname,record) save([sp2,'\',CSname,'_rec'],'record'); end fu...

más de 4 años hace | 1

| aceptada

Respondida
Code source for mathworks tutoriel video (Face Recognition with MATLAB)
It's published on file exchange. you can get it from there. https://www.mathworks.com/matlabcentral/fileexchange/68985-real-tim...

más de 4 años hace | 0

Respondida
Vectorizing Table in Structure without Loop
Are the Tables T1, T2, Tn compatible with each other, meaning they have the same column definitions. Are the only data in the s...

casi 5 años hace | 0

| aceptada

Respondida
Frame must be 1464 by 834 but why ?
In that case perhaps you can try writing the image directly to the video, instead of using getFrame with imshow. imgFiles = dir...

casi 5 años hace | 1

| aceptada

Respondida
Frame must be 1464 by 834 but why ?
The video frame size is set by the first frame that you write. From the documentation. "The writeVideo method sets values for...

casi 5 años hace | 0

Respondida
Send and Recieve data between client and workers
Moved to answer. Ok after some experimentation this seems to work. If the queue are created in the main thread they can only be...

casi 5 años hace | 0

| aceptada

Respondida
How do I prove that javaObjectEDT and javaMethodEDT are indeed being run on EDT?
Your invocation of Thread.currentThread is executed in the matlab main thread not on EDT. Do as follows. t = javaMethodEDT('cu...

casi 5 años hace | 0

| aceptada

Respondida
how to convert table with struct to excel sheet
Not really sure about what your data looks like. Assuming your structs are compatible, you can concatenate them together. s = v...

casi 5 años hace | 1

| aceptada

Respondida
How to replace the values of a column of a variable with another column from another variable in matlab?
You can do as follows if you want to maintain it as struct array. b = [network.FID_1]; a = [sedsource.FID_Networ]; [lib,loca]...

casi 5 años hace | 0

| aceptada

Respondida
matlab can't call matplotlib
Based on this Answer from Matlab staff : https://www.mathworks.com/matlabcentral/answers/551710-matlab-crashes-when-using-py-ma...

casi 5 años hace | 0

| aceptada

Respondida
How to stop subsequent plots outputting to the current pane?
To force MATLAB to create new figure, you need to call figure function before calling the plot.

casi 5 años hace | 6

| aceptada

Respondida
App designer - using a single variable to return multiple indices
Change it as follows ROI(app, positionVector{i,:}); %row i, all columns

casi 5 años hace | 1

| aceptada

Respondida
Json Parsing error on formatted text
I assume this is the api you are using. https://docs.github.com/en/rest/reference/repos#create-a-release On the documentation ...

casi 5 años hace | 0

| aceptada

Respondida
How can I Run the Code On Multiple data Files (.txt) sequentially from a folder
From your question I assume that you want to essentially read all the files, not just 10-20 files. You can essentially use uige...

casi 5 años hace | 0

Respondida
read table without having reading the directory path
You can have the user select the file to process using the function uigetfile [file,path] = uigetfile(); if isequal(file,0) ...

casi 5 años hace | 0

Respondida
Generate efficiently an array of all combinations of a range of elements
You can try the following. [x1,x2,x3,x4] = ndgrid(0:3,0:3,0:3,0:3); allpossible = [x1(:) x2(:) x3(:) x4(:)];

casi 5 años hace | 0

| aceptada

Respondida
Looping through mulyiple variable with names+numbers
You should use cell arrays to store your data. For example. Arms = cell(25,1); for i=1:2:25 Airms = Arms{i}; end

casi 5 años hace | 0

Respondida
how to create mouse movement event on UIAxes in APP Designer to catch cursor location on the axes?
You can set the callback WindowButtonMotionFcn on the app.UIFigure. https://www.mathworks.com/help/releases/R2020b/matlab/ref/m...

casi 5 años hace | 0

Respondida
How can we run a loop to stack data for each day in both years (use 12 hours in each day)?
I am assuming this is a struct. Also assuming that data in NCF is the same size. %convert to table. % mydata = struct(); t = ...

casi 5 años hace | 0

Cargar más