Create an excel sheet from data stored in variable used in a for loop

1 visualización (últimos 30 días)
given loop:
input value = c
for m=0:1:c-1
if( some condition )
//some operation;
j=1;
else
j=0;
end
end
I want to store value of j for every iteration from 0 to c-1 in an excel sheet like lets say for c=5,my xls sheet should look some what like this:
// this is just a reference
1
0
0
1
0

Respuesta aceptada

Bob Thompson
Bob Thompson el 31 de Jul. de 2019
From what you've posted, which is a bit vague, it seems like all you need to do is index your results and then use xlswrite to print the results.
for m = 1: c-1
...
j(m) = 1;
else
j(m) = 0;
end
end
xlswrite('mydata.xlsx',j)

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by