Community Profile

photo

NgoiKH


Last seen: 1 día hace Con actividad desde 2019

Estadísticas

All
  • First Submission
  • First Answer

Ver insignias

Content Feed

Ver por

Respondida
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...

11 meses hace | 0

Respondida
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...

11 meses hace | 0

Respondida
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...

más de 1 año hace | 0

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

más de 2 años hace | 1

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

más de 4 años hace | 1