필터 지우기
필터 지우기

HOW TO SAVE RESULTS OF EVERY LOOP WITH ITERATIONS

조회 수: 1 (최근 30일)
PRANAY DISHAN
PRANAY DISHAN 2018년 1월 21일
댓글: Rakesh R 2019년 3월 11일
Hello everyone, I am new to matlab and working on my Project.
I have the following code which saves the data of only one iteration. But i want to store the data of every iteration. the output results shows four 4 data but in work space there are only 2 stored. Can you please help me on this. Thank you.
clc; clear; close all;
MaxIt=2;
nPop=2;
[D, K, M] = problem3();
CostHandle = @(s) calc3(s);
empty_particle.Sol = [];
empty_particle.Cost = [];
for it=1:MaxIt
for i=1:nPop
%RANDOM SOLUTION
particle(i).Sol=solution3(D, K, M);
%COST CALCULATION
particle(i).Cost=CostHandle(particle(i).Sol);
end
end
  댓글 수: 5
PRANAY DISHAN
PRANAY DISHAN 2018년 1월 22일
thank u so much for prompt responses. i have achieved what was required. Thank u once again :-)
Rakesh R
Rakesh R 2019년 3월 11일
can u publish it plz, even i am stuck in the same question.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by