photo

karipuff


Last seen: 14日 前 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...

2年弱 前 | 0

回答済み
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