photo

Akshay Malav


Attivo dal 2019

Followers: 0   Following: 0

Statistica

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
How to get the row and column from a matrix?
Below is the code snippet for it . [row column] = size(A) % size returns the rows and columns of matrix A Here is the doc for...

circa 5 anni fa | 0

| accettato

Risposto
How to declare a cell array of a particular size n ?
This question has been answered before Here.

circa 5 anni fa | 0

| accettato

Risposto
how to write or condition in if statement matlab?
if (j==i) | (flag(j)==1) % your code end

circa 5 anni fa | 0

| accettato

Risposto
creating an empty cell in an array
Then use this code. A = [1 NaN 2]; B = rmmissing(A) % will remove NaN from array A The B array wil be [1 2]

circa 5 anni fa | 0

| accettato

Risposto
Not able to excecute the code
First change the number of rows from 0 to 1 and correspondingly the rows array should contain only 1 element either 'A' or 'B'. ...

circa 5 anni fa | 0

Risposto
How to find values for corresponding start and end positons
Here is the sample code filename = 'mysheet.xlsx'; %read the excel filr A = xlsread(filename); %store the content...

circa 5 anni fa | 0

Risposto
How to read images from the folder and select region of interest (rectangular) once
1) I am attaching a self explanatory code % Get list of all jpg files in this directory imagefiles = dir('*.jpg'); n...

circa 5 anni fa | 0

Risposto
Extract cell with number lines and columns
So let's say A is the cell array and you want to access it's 4th element then you can do A{4} . And now if you want to access l...

circa 5 anni fa | 0

Risposto
"Invalid Security Token" error during Login
Please follow the below link , I hope it helps. https://www.mathworks.com/matlabcentral/answers/341784-why-do-i-receive-the-log...

circa 5 anni fa | 0

Risposto
Extract cell with number lines and columns
Okay here is the explaination Let's say that you have a cell Array A which contains a cell array inside it ,it has dimension f...

circa 5 anni fa | 0

Risposto
How to normalize time periods
Hi , there is a inbuilt function in matlab to normalize the data . Look at the link mentioned below . The function is V = norma...

circa 5 anni fa | 0