photo

karipuff


Last seen: 13 jours il y a Actif depuis 2019

Followers: 0   Following: 0

Statistiques

All
  • First Submission
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

environ un an il y a | 0

Réponse apportée
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...

environ un an il y a | 0

Réponse apportée
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...

presque 2 ans il y a | 0

Réponse apportée
using string in if statement
str = 'abc' if strcmp('abc',str) expression else expression end

plus de 2 ans il y a | 1

Réponse apportée
How to make axes have proportional scales?
daspect([1 1 1])

plus de 4 ans il y a | 1