photo

karipuff


Last seen: 2 months ago Active since 2019

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
5 Answers

File Exchange

1 File

RANK
7,061
of 297,503

REPUTATION
6

CONTRIBUTIONS
0 Questions
5 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
2

RANK
20,344 of 20,449

REPUTATION
0

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159,017

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

  • First Submission
  • First Answer

View badges

Feeds

View by

Answered
How to save structure inside a structure in .mat file?
%%% Saving content of structure a = field1: {6x6 cell} field2: {6x6 cell} field3: {6x6 cell} field4: {6x6 cell} fi...

2 years ago | 0

Answered
How can I save the contents of a struct to a .mat file?
%%% Saving content of structure field_str = fieldnames(a); save('filename.mat', field_str{:}) %% Loading content of structu...

2 years ago | 0

Answered
Counting number of digits after the decimal points
function [N_decimal] = countdecimal(value) max_round_dec = 15; for N_decimal = 0:max_round_dec val = rem(value,10^(-N_dec...

2 years ago | 0

Submitted


countdecimal
Used to count number of decimals of a non-integer number

2 years ago | 0 downloads |

0.0 / 5
Thumbnail

Answered
using string in if statement
str = 'abc' if strcmp('abc',str) expression else expression end

3 years ago | 1

Answered
How to make axes have proportional scales?
daspect([1 1 1])

5 years ago | 1