Skip to content

Commit

Permalink
Clearer example
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrarodav authored Apr 20, 2021
1 parent 9d10fcc commit e75cde8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ Moreover, the used file paths and the name under which each output variable is s
<!--When needed, the number of outputs can be manually specified (`config.numberOfFunctionOutputs`) otherwise it will be inferred.-->

```matlab
>> output = safeMap(@(x) x^5, repmat({rand(300)}, 10, 10));
Progress: 100 / 100 (100.0%)
>> output = safeMap(@(x) rand(1,300)*x^5*rand(300,1), repmat({rand(300)}, 100, 100));
Progress: 731 / 10000 (7.3%)
Estimated remaining time: 143s
🔴(Ctrl+C) Operation terminated by user during ...
>> output = safeMap(@(x) rand(1,300)*x^5*rand(300,1), repmat({rand(300)}, 100, 100));
Resuming previous work, from 732-th input
Progress: 10000 / 10000 (100.0%)
Estimated remaining time: 0s
```

Expand Down

0 comments on commit e75cde8

Please sign in to comment.