photo

Rohith Nomula


Last seen: 約4年 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Knowledgeable Level 2
  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
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年 前 | 0

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 0

回答済み
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年 前 | 0

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 0

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 0

回答済み
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年 前 | 0

回答済み
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年 前 | 2

| 採用済み