photo

Jonah Caplan


McGill University

Active since 2015

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

2 Questions
1 Answer

RANK
21,738
of 300,302

REPUTATION
2

CONTRIBUTIONS
2 Questions
1 Answer

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
1

RANK
 of 20,911

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,040

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

Feeds

View by

Answered
Memory issues in generated for loops
The problem seems to be the single(). This works better: function y = fcn(u) y = u; for i = 0:single(0.15):1000000...

10 years ago | 1

| accepted

Question


Memory issues in generated for loops
The simple Matlab code: function y = fcn(u) y = u; for i = single(0:0.15:1000-1) y = y + (i+1)^u; end ...

10 years ago | 1 answer | 0

1

answer

Question


simple method of forcing single precision floating point operations
There are some frustrating things that occur when trying to generate single precision math using embedded coder. I only have sin...

10 years ago | 3 answers | 0

3

answers