Community Profile

photo

Rohith Nomula


Last seen: 4 years ago Active since 2020

Followers: 0   Following: 0

Statistics

All
  • Knowledgeable Level 2
  • Solver
  • First Answer

View badges

Feeds

View by

Answered
How to save and load data in parallel while optimizing?
Use parfor - parallel for loop in MATLAB Then use a cell array to store all the values assigned in the looping state % declare...

4 years ago | 0

Answered
appdesigner tiledlayout plot does not have zoom etc toolbar
In the design window of app designer Just click on toolbar and place it in the top For selecting customized Icon double click...

4 years ago | 0

| accepted

Answered
While Loop Consecutive Odd Integers Question
This can be done using a while loop Initialize i from 100 and j from 1. Here the one condition is i should be greater that 0 c...

4 years ago | 0

Answered
Can someone teach me how this code is excecuted?
There is no need of i=i+1 in the for loop function matrix = sparse2matrix(cellvec) row = cellvec{1,1}(1,1); col = cellvec{1...

4 years ago | 0

Answered
How to close UIAlert in AppDesigner by command?
You can use message box tool in the base code itself h = msgbox('Please Wait ...you are dealing with large data', 'Processing'...

4 years ago | 0

| accepted

Answered
Counting elements in cell array
You can try this for a specific column of a cell array Suppose in the 2nd column you have elements labels=NameofYourCellArra...

4 years ago | 0

Answered
Error when uploading Cell Array to UI Table in GUI
load it normally yourfile = load('GlobalSystemMatrices.mat') yourtable = struct2table(yourfile) that way you get a 3 column t...

4 years ago | 0

| accepted

Answered
can someone explain this code for me? i am not sure what the q is doing here inside the loop. why do both vectors after the loop have the same numbers?
Basically first you are allocating space for 10 elements in b by doing b = zeros(1,10) After that for each element in b you a...

4 years ago | 0

Answered
help to input sqrt function
For this z=(sin√(x^2+y^2 ))/√(x^2+y^2 ) For x and y as single elements z=sin(sqrt(1^2+2^2)) z=z/(sqrt(1^2+2^2)) For a fu...

4 years ago | 0

Answered
the first letter of the output string will be the first letter of the first word of the sentence.
You can split your string using a delimiter. which in your case is space new_s = split(s,' ') create a dummy string ans and ap...

4 years ago | 2

| accepted