Akash Pal
Followers: 0 Following: 0
Feeds
提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
How to implement more steps in mathwork coding?
fun [ …… 0ut2 …. ]= mainfun [………………….] iteration=0 while iteration<maxiterationno some parameter and the...
2 years 前 | 2 个回答 | 0
2
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 3 个回答 | 0
3
个回答提问
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 前 | 2 个回答 | 0
2
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 0 个回答 | 0
0
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 2 个回答 | 0
2
个回答提问
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 前 | 2 个回答 | 0
2
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 2 个回答 | 0
2
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 2 个回答 | 0