Aakash
Followers: 0 Following: 0
Feeds
已回答
Automating function creation from an input statement
To create a program that takes N equations with N variables and produces N functions based on those equations, you can use the c...
Automating function creation from an input statement
To create a program that takes N equations with N variables and produces N functions based on those equations, you can use the c...
1 year 前 | 0
| 已接受
已回答
How to access element of a matrix using vector function
Hi, 1.So one way is you can access the specific row in a column vector through a seperate line like; column_vector = A(:, 3); ...
How to access element of a matrix using vector function
Hi, 1.So one way is you can access the specific row in a column vector through a seperate line like; column_vector = A(:, 3); ...
1 year 前 | 0
已回答
Why do i receive license manager error
Hi, The error message indicates that there is a license issue with the Fixed-Point Toolbox in MATLAB. Please refer the followi...
Why do i receive license manager error
Hi, The error message indicates that there is a license issue with the Fixed-Point Toolbox in MATLAB. Please refer the followi...
1 year 前 | 0
已回答
Correlation coefficient of NaN values
MATLAB provides a function to calculate the correlation coefficient between two sets of data, even if they contain NaN values. ...
Correlation coefficient of NaN values
MATLAB provides a function to calculate the correlation coefficient between two sets of data, even if they contain NaN values. ...
1 year 前 | 0
| 已接受
已回答
how to use loop for sum without using cumsum?
You can do this: %sample data x = [1, 2, 3, 4]; n = length(x); s = zeros(n, 1); % Initialize s as a vector of zeros for...
how to use loop for sum without using cumsum?
You can do this: %sample data x = [1, 2, 3, 4]; n = length(x); s = zeros(n, 1); % Initialize s as a vector of zeros for...
1 year 前 | 0
| 已接受
已回答
How to use spherical Hankel fumction to obtain sphere scatter
The error in your code arises from the fact that the variable nu is a symbolic variable defined using syms, while x is a numeric...
How to use spherical Hankel fumction to obtain sphere scatter
The error in your code arises from the fact that the variable nu is a symbolic variable defined using syms, while x is a numeric...
1 year 前 | 0
已回答
Finding the resultant of 3 perpendicular complex vectors
To calculate the magnitude of the resultant E field at each point in p, sum up the components and divide by magnitude at each po...
Finding the resultant of 3 perpendicular complex vectors
To calculate the magnitude of the resultant E field at each point in p, sum up the components and divide by magnitude at each po...
1 year 前 | 0
| 已接受
已回答
How to sort a cell alphabetically?
You can use the function provided in this matlab file exchange resource: https://www.mathworks.com/matlabcentral/fileexchange/47...
How to sort a cell alphabetically?
You can use the function provided in this matlab file exchange resource: https://www.mathworks.com/matlabcentral/fileexchange/47...
1 year 前 | 0
已回答
Breaking the axis of plots
You can refer to this work from matlab file exchange forum: https://www.mathworks.com/matlabcentral/fileexchange/3683-breakxaxis...
Breaking the axis of plots
You can refer to this work from matlab file exchange forum: https://www.mathworks.com/matlabcentral/fileexchange/3683-breakxaxis...
1 year 前 | 0
已回答
Draw multi graphs in one figure
You can achieve the desired outcome using subplot function as below: t=0:0.000001:0.1; x=sin(100*t); y=cos(100*t); figure;...
Draw multi graphs in one figure
You can achieve the desired outcome using subplot function as below: t=0:0.000001:0.1; x=sin(100*t); y=cos(100*t); figure;...
1 year 前 | 0
已回答
Generate 2 random numbers x and y for 10 times in a loop. x can take any value in the range of (0,1) but y is conditioned on x such that y assumes any number between (0,1-x)
You can use this: for i = 1:10 x = rand(); y = rand()*(1-x); end
Generate 2 random numbers x and y for 10 times in a loop. x can take any value in the range of (0,1) but y is conditioned on x such that y assumes any number between (0,1-x)
You can use this: for i = 1:10 x = rand(); y = rand()*(1-x); end
1 year 前 | 0
已回答
Resnet50 layers in code format
This link below may help you: https://github.com/matlab-deep-learning/resnet-50
Resnet50 layers in code format
This link below may help you: https://github.com/matlab-deep-learning/resnet-50
1 year 前 | 0
已回答
How do I use writetable to output a filename depending on my input?
Create filename before passing it to writetable using sprintf as below: filename = sprintf('Schedule for %s.xlsx', data); w...
How do I use writetable to output a filename depending on my input?
Create filename before passing it to writetable using sprintf as below: filename = sprintf('Schedule for %s.xlsx', data); w...
1 year 前 | 1
| 已接受
已回答
How to force jsonencode to return floating format
Use the sprintf function to format the value of DR to a string with one decimal place So change the required line to: apiData.D...
How to force jsonencode to return floating format
Use the sprintf function to format the value of DR to a string with one decimal place So change the required line to: apiData.D...
1 year 前 | 0
已回答
Resizing the image to 224*224 for resnet50
Ok so going by the tags associated with your question: Ensure images are present in the location folder. Modify the line str=[...
Resizing the image to 224*224 for resnet50
Ok so going by the tags associated with your question: Ensure images are present in the location folder. Modify the line str=[...
1 year 前 | 0
已回答
Applying a K-Fold cross validated model to predict the response variable for new data
You can use the predict function in MATLAB to predict responses using the cross-validated model KFoldMd and the new data predict...
Applying a K-Fold cross validated model to predict the response variable for new data
You can use the predict function in MATLAB to predict responses using the cross-validated model KFoldMd and the new data predict...
1 year 前 | 0
| 已接受