Community Profile

photo

Rohith Nomula


Last seen: casi 4 años hace Con actividad desde 2020

Followers: 0   Following: 0

Estadísticas

All
  • Knowledgeable Level 2
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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'...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 2

| aceptada