Community Profile

photo

Shravan Kumar Vankaramoni

Last seen: 7 mois il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • Revival Level 2
  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
Error using - Matrix dimensions must agree.
Hi, There is a mismatch in the matrix dimensions you are using in that equation. Refere the below links to understand on that...

plus de 2 ans il y a | 0

A répondu
Matlab drive not syncing
Hi, You can try the following work around: 1) Shutdown MATLAB Drive Connector. 2) Within the local MATLAB Drive folder, loca...

plus de 2 ans il y a | 0

A répondu
Filtering txt files out structs and assign to subfolder
Hi, You can simply use the below code to filter out the files files = dir(CAp_*.txt) % This will give all the .txt files start...

plus de 2 ans il y a | 0

A répondu
run a matlab code as a windows service
Hi, You can use MATLAB Production Server to do that. Deploy your code using MATLAB Production server and add that as a windows ...

plus de 2 ans il y a | 0

A répondu
Hi I'm trying to run this code right now but it shows "Not enough input arguments" and "Error in GetData (line 13): load([EnvDir 'Envelope_F.mat'],'Envelope_F');"
Hi, Your function 'GetData' expects two input arguments. You need to give exactly two inputs otherwise, it will give that error...

plus de 2 ans il y a | 0

A répondu
MATLAB Guide closing Question
Hi Mitch, If you are trying to throw an alert message on hitting the close button, you can refer the below page https://www.ma...

plus de 2 ans il y a | 0

| A accepté

A répondu
Finding Submatrices of lesser rank from a full rank matrix
Hi Arjun, Currently there is no command in MATLAB that gives all submatrices with a given rank. You can try to reduce the numb...

plus de 2 ans il y a | 0

A répondu
Two Matrices and Tensor Product
Hi, The size of each row in 31*16 matrix would be 1*16, which is a row vector. But to multiply with 1116*16 matrix, the compati...

plus de 2 ans il y a | 0

| A accepté

A répondu
Adding counter to count the number of row swaps for GEA
Hi, if abs(A(k,k))<10^(-10) The above line looks suspicious to me. What is the range of values you have in your input matrix (...

plus de 2 ans il y a | 0

A répondu
Lagrange Interpolation Question!
Hi, "ones(a,b)" returns a-by-b array of ones. L = ones(length(x),N); %length(x)-by-N array L(:,1) = ones(1,length(x)); %le...

plus de 2 ans il y a | 0

A répondu
Warning while solving 2 Simultaneous ODE's using dsolve
Hi, Yes, you will get that warning if you try to pass equations and conditions directly to "dsolve". You need to use "diff" fun...

plus de 2 ans il y a | 0

A répondu
How to calculate the return rates of the assets?
Hi, I assume that, you have data in a file and want to import to a MATLAB table. You can use "readtable" function as below T =...

plus de 2 ans il y a | 0

A répondu
Plot using the App Designer
Hi, You need to maintain a local variable to keep a count on the number of points already read. Below code demonstrates plottin...

plus de 2 ans il y a | 0

| A accepté

A répondu
Passing Data located on a Vector (or Matrix) Variable from one GUI to another
Hi, I understand that you are having issue in transferring data among apps. So, Here is the example that illustrates that funct...

plus de 2 ans il y a | 0

A répondu
I can't run fastaread and uigetfile over the runtime-based standalone app!!!!
Hi, As you are able to Run it in the AppDesigner but it is not working once converted to an executable. So the problem could be...

plus de 2 ans il y a | 0

A répondu
running Multiple Functions, in Parralel in Matlab for Arduino or Ardruino Itself ?
Hi, You can use simple PARFOR to execute those functions simultaneously as long as they don't interact with each other. Below i...

plus de 2 ans il y a | 0

| A accepté

A répondu
Can I use MATLAB in Linux that licensed in window server?
Hi, MATLAB license is not operating system specific. It is, however restricted in the number of different physical systems you ...

plus de 2 ans il y a | 0

A répondu
Solver could not solve the system of algebraic equations, how do I solve that?
Hi, The error occurred because one of the parameters might be given a value "NaN". You can check this by enabling the "Show val...

plus de 2 ans il y a | 0

A répondu
in the anderson darling test function example adtest(x,'distribution','ev') what does these arguments stand for and how to declare them?
Hi, adtest(x,'distribution','ev') x - Sample Data Other two arguments are name value pair where 'ev' represents Extreme Value...

plus de 2 ans il y a | 0

A répondu
i want to assign number of tasks to fog nodes randomly son in the matrix i will have different solution and i got the same solution repeated
Hi, for FN=1:fognodesnumber x(task,indices2(FN))=offloading(indices(task)); end In the above loop, task( row number ) is...

plus de 2 ans il y a | 0

| A accepté

A répondu
Can multiple Ubuntu users access MATLAB from the same computer?
Hi, Refer the below link: https://www.mathworks.com/matlabcentral/answers/96008-how-can-i-install-multiple-individual-or-desig...

plus de 2 ans il y a | 0

| A accepté

A répondu
How I can make this matrix
Hi, The given matrix has equal number of ones in each row or sum of elements in each row is same. If you are looking for such a...

plus de 2 ans il y a | 0

A répondu
solve 3 nonlinear equation symbolic
Hi, Refere the below links: https://www.mathworks.com/matlabcentral/answers/512785-unable-to-find-explicit-solution-but-i-know...

plus de 2 ans il y a | 0

A répondu
Programming python with matlab
Hi, Refer these links: https://stackoverflow.com/questions/1707780/call-python-function-from-matlab https://www.mathworks.com...

plus de 2 ans il y a | 0

| A accepté

A répondu
run different times in the for loop
Hi, rateControl cannot be applied here. It executes only at a fixed frequency. You can use pause(t) to execute the loop at diff...

plus de 2 ans il y a | 0

A répondu
How to plot multiple histograms from a matrix next to each other in a 3D plot
Hi Ananya, Refer these links: https://www.mathworks.com/matlabcentral/answers/295595-arrange-multiple-2d-histograms-in-3d htt...

plus de 2 ans il y a | 0

A répondu
sorting folder based on what type of files it contains
Hi, Below code demostrates sorting folders based on certain files and move them to another folder. fileList = dir('*.bmp'); % ...

plus de 2 ans il y a | 0

| A accepté

A répondu
Minimise the sum of squared errors, with non linear constraints
Hi, Refer this below thread. https://www.mathworks.com/matlabcentral/answers/96817-what-things-can-i-do-to-increase-the-speed-...

environ 3 ans il y a | 0

A répondu
Combine pngs and print out a figure with original quality
Hi, Have a look at the following thread. https://www.mathworks.com/matlabcentral/answers/54750-getting-better-high-resolution-...

environ 3 ans il y a | 0

A répondu
Predicting the output of a machine based on the data in hand
Hi, I understand that it is a regression problem. It is possible to implement your scenario using deep learning toolbox. The fo...

environ 3 ans il y a | 0

| A accepté

Charger plus