Community Profile

photo

NgoiKH


Last seen: 3일 전 2019년부터 활동

Followers: 0   Following: 0

통계

All
  • First Submission
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
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...

대략 1년 전 | 0

답변 있음
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...

대략 1년 전 | 0

답변 있음
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...

1년 초과 전 | 0

제출됨


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

1년 초과 전 | 다운로드 수: 0 |

Thumbnail

답변 있음
using string in if statement
str = 'abc' if strcmp('abc',str) expression else expression end

2년 초과 전 | 1

답변 있음
How to make axes have proportional scales?
daspect([1 1 1])

4년 초과 전 | 1