
Rounak Saha Niloy
Statistics
RANK
255.180
of 273.563
REPUTATION
0
CONTRIBUTIONS
20 Questions
5 Answers
ANSWER ACCEPTANCE
75.0%
VOTES RECEIVED
0
RANK
of 18.459
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 123.032
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Question
Generate a Random Point inside a box/plane
Let's say, I have coordinates of two points as (p,q) and (x,y). I want to generate a random point within the plane bounded by th...
7 dagen ago | 2 answers | 0
2
answersQuestion
Shaded Plot of multiple curves
I have 31 curves as following- I want to make a shaded plot of these curves. I want one particular curve of these curves to b...
20 dagen ago | 1 answer | 0
1
answerQuestion
How to append Struct?
I have 3 structures as follows- ABC.x=1; ABC.y=2; ABC.z=3; DEF.p=1; DEF.q=2; GHI.m=1; GHI.n=2; How can I append th...
3 maanden ago | 1 answer | 0
1
answerSplitting Matrix based on another matrix
I would like to thank Matt J for helping me solve the problem. My sincere gratitude to him. Meanwhile, this is the way how I ha...
4 maanden ago | 0
| accepted
Splitting Matrix based on another matrix
This can be a way, I think. Need to think about the extreme cases though. [A,ia]=setdiff(cx,popx,"rows","stable"); ia1=setdi...
4 maanden ago | 0
Question
Splitting Matrix based on another matrix
I have two matrices as follows. popx=[52.647 10.912 2.389 52.564 10.911 2.389 52.569 10.912 2.389 52.569 10.912 ...
4 maanden ago | 4 answers | 0
4
answersQuestion
Convert Column to Matrix
I have a column matrix of size 1000*1. I want to convert it into a 100*10 table. How do I do that?
4 maanden ago | 1 answer | 0
1
answerQuestion
How to open External Program by MATLAB?
I want to open an external program named Maxsurf Modeler using MATLAB. Initilially, I was using system command to open the soft...
4 maanden ago | 1 answer | 0
1
answerQuestion
Create multiple copies of one file in multiple directories with different names
I want to create multiple folders. Let's say, the names of folders are- Folder 1, Folder 2, Folder 3 and so on. In each folder,...
4 maanden ago | 1 answer | 0
1
answerQuestion
Suppress Window using System Command
I am trying to open a software. Using command prompt, I can open it in the following way. How can I open it using Matlab system ...
4 maanden ago | 1 answer | 0
1
answerQuestion
Is there any way to monitor the memory usage of a specific software using MATLAB?
In my code, I use actxserver to run MS Excel and in MS Excel, there is a VBA code which runs another software named Maxsurf Mode...
5 maanden ago | 1 answer | 0
1
answerQuestion
How to ROUND the elements of cell array?
I have the followin struct with field. K>> child child = struct with fields: x: {[3×9 double]} K>> child.x...
5 maanden ago | 1 answer | 0
1
answerQuestion
Deduplicate Rows from Struct
I have the following struct- Database.x = [1 0 1 2 0 2 3 0 1 1 0 1]; Database.f =...
6 maanden ago | 1 answer | 0
1
answerQuestion
How to create table?
I have 3 Problems named "A", "B", "C". For each three problems, I have 4 Performance Metrics- "D", "E", "F", "G". And for each p...
7 maanden ago | 2 answers | 0
2
answersFormatting Data from readmatrix
Used the following code and it solved my problem. format longg; Result = readmatrix("MyExcel.xlsm","Range","A1:C1")
10 maanden ago | 0
| accepted
Question
Formatting Data from readmatrix
I have an excel file with name MyExcel.xlsm. The data in "A1:C1" are- A1 = 236381.358; B1 = 338746.896; C1 = 13.239 I am using...
10 maanden ago | 1 answer | 0
1
answerQuestion
Defining Precision in LHSDESIGN
I want to create a set of variable using LHSDESIGN where no. of returned samples will be 100 and no. of returned variable will b...
10 maanden ago | 0 answers | 0
0
answersQuestion
Writing and Executing Formula in Excel by MATLAB
I have some values in a xlx file in A1:A10 and B1:B10. If A1==B1, in C1, I want to write "Matched". How do I do this using MATLA...
11 maanden ago | 1 answer | 0
1
answerQuestion
Unable to Open External Program by actxserver
I am getting the following error although the same code works in another device with MATLAB R2021b. What should I do here?
11 maanden ago | 1 answer | 0
1
answerQuestion
Write Data to txt file from Excel
I have some data in cell D3:D10 in an excel file. I want to write these particular data in a txt file. How do I do that?
11 maanden ago | 1 answer | 0
1
answerQuestion
Read Data from Text File as Matrix
I have a text file with name "1.txt". The Content of the file is as follows- 1.20 2.30 3.50 4.88 I want to read the text ...
11 maanden ago | 1 answer | 0
1
answerCreate txt file from each row of Matrix
The following code worked fine for me. A=D'; for i = 1:7500 fid = fopen([num2str(i),'.txt'],'w') ; fprintf(fid,'%f...
11 maanden ago | 0
| accepted
Question
Create txt file from each row of Matrix
I have a matrix D with size 3x7500. I want to generate separate text files with each row of matrix. How do I do this?
11 maanden ago | 3 answers | 0
3
answersCreate Matrix from Multiple Matrices
I have got a better option since my matrix size is large and no. of matrices is also large. If my matrices are- A, B,C and so o...
11 maanden ago | 0
| accepted
Question
Create Matrix from Multiple Matrices
I have 3 matrices as follows- A = [1 2 3] B = [4 5 6] C = [7 8 9] I want to create a matrix D as follows- [1 4 7; 1 4 8; 1 ...
11 maanden ago | 3 answers | 0