Akash Pal
Followers: 0 Following: 0
Statistik
24 Fragen
0 Antworten
RANG
87.842
of 295.448
REPUTATION
0
BEITRÄGE
24 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
66.67%
ERHALTENE STIMMEN
0
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.872
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
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...
fast 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
fast 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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’...
fast 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to implement more steps in mathwork coding?
fun [ …… 0ut2 …. ]= mainfun [………………….] iteration=0 while iteration<maxiterationno some parameter and the...
etwa 2 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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 ...
etwa 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ...
mehr als 2 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
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...
mehr als 2 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to do the calculation of these three different size matrices ?
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 2 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
how to do the matrix value comparison of two different iterations ?
fun [ …… …. ]= mainfun [………………….] iteration=1 while iteration<maxiterationno some parameter and their c...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ....
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 2 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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 ...
mehr als 2 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ?
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ...
fast 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ...
mehr als 3 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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 ....
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 3 Jahre vor | 2 Antworten | 0