Akash Pal
Followers: 0 Following: 0
Statistics
24 Questions
0 Answers
RANK
87,842
of 295,448
REPUTATION
0
CONTRIBUTIONS
24 Questions
0 Answers
ANSWER ACCEPTANCE
66.67%
VOTES RECEIVED
0
RANK
of 20,227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,872
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
Feeds
Question
How to add a condition in programming coding ?
for v=1:j simdone = 1; row = 1; while (simdone == 1) if ((Co1ap1{v}(row,i+1) <= Co1ap1{v}(row+1,i+1)) && (Co1ap1{v}(row,i+2...
2 years ago | 1 answer | 0
1
answerQuestion
How to make the condition for checking the matrix value ?
function [popnew1,mutated] =mutation(A,Pm) mutated = find(rand(size(A))<Pm); popnew1 = A; % Why my this condition is not w...
2 years ago | 1 answer | 0
1
answerQuestion
How to do mutation condition in a matrix?
I mean in case of second matrix B ,in first row for the first part only one 1 is there and in the 2nd part it has two 1 so it’...
2 years ago | 1 answer | 0
1
answerQuestion
How to implement more steps in mathwork coding?
fun [ …… 0ut2 …. ]= mainfun [………………….] iteration=0 while iteration<maxiterationno some parameter and the...
2 years ago | 2 answers | 0
2
answersQuestion
How to implement this kind of coding ?
Maybe I have a matrix called A any size . It's in a loop ,so after first iteration i got the value which i want to comapre with ...
2 years ago | 1 answer | 0
1
answerQuestion
How to create a simple matrix from two different kind of matrix size ?
I have a matrix whose size is 2X5X2 double and another matrix whose size is 2X5 double how i can create a matrix from it where ...
2 years ago | 3 answers | 0
3
answersQuestion
How to create this matrix ?
I have a matrix whose size is 2x5x2 double and i have another matrix which is 2X5 double ,i just want to add together and make...
2 years ago | 2 answers | 0
2
answersQuestion
how to do the addition of the cell matrix ?
val(:,:,1) = 0 67.5000 0 67.5000 0 0 67.5000 0 67.5000 0 va...
2 years ago | 1 answer | 0
1
answerQuestion
How to do the calculation of these three different size matrices ?
2 years ago | 1 answer | 0
1
answerQuestion
How to terminate any sub function's execution within the main function?
When I am running a MATLAB function that time if I don’t want to wait for the any sub function result and I want to terminate th...
2 years ago | 0 answers | 0
0
answersQuestion
how to do the matrix value comparison of two different iterations ?
fun [ …… …. ]= mainfun [………………….] iteration=1 while iteration<maxiterationno some parameter and their c...
2 years ago | 1 answer | 0
1
answerQuestion
How to solve the problem ?
function [F,front,Q, individual,index_of_objectives, f,temp,index_of_fronts,sorted_based_on_front,sorted_based_on_objectiv...
2 years ago | 1 answer | 0
1
answerQuestion
How to solve this error?
Index in position 1 exceeds array bounds (must not exceed 17). Everytime i am going to run my program i am getting this error ....
2 years ago | 1 answer | 0
1
answerQuestion
How to stop a sub function after certain time from main function ?
I want to stop a sub function of my main function after a certain time and want to get the other sub function result at the same...
2 years ago | 1 answer | 0
1
answerQuestion
How to make a Comparison of the values of a matrix for different iteration ?
If I have a matrix A of any size (mXn) , And i want to iterate it maybe for the 100 times .So how I can do the comparision of th...
2 years ago | 2 answers | 0
2
answersQuestion
How to get a one function result?
I have a main function called mainfun function [out1,out2]=mainfun(input) [out1]=fun1(input); [out2]=fun2(input); end ...
2 years ago | 2 answers | 0
2
answersQuestion
How to calculate the crowding distance of the objective values ?
let think I have a matrix A ,After non dominated sorting I ranked them.I have 15 variables column number (1-15) and two object...
2 years ago | 1 answer | 0
1
answerQuestion
how to calculate the crowding distance of matrix ?
I want to find out the crowding distance of f1 and f2 column .How i can find this ?
2 years ago | 1 answer | 0
1
answerQuestion
How to do the non dominated sorting ?
I have a matrix i want to do non dominated sorting of the matrix and want to give the rank of the each row Based on the value ...
3 years ago | 1 answer | 0
1
answerQuestion
How I can run two different functions at the same time ?
function [ add, sub] = inp(x,y) add= x+ y; sub=x-y; end function [ mul,div ] =iput(x,y) mul=x*y; div=x/y; end These two ...
3 years ago | 2 answers | 0
2
answersQuestion
How can I create this matrix ?
Let I have three matrix A=26X5 B=26Xj c=26Xj where A matrix size is fixed but in B and C the column number can be varied ....
3 years ago | 1 answer | 0
1
answerQuestion
How i can combine three or more than three matrix?
y=[repmat(x1,size(x2,1),1),repelem(x2,size(x1,1),1)]; I am writing this code for combining two matrix where the row number is d...
3 years ago | 2 answers | 0