photo

karipuff


Last seen: 13 Tage vor Aktiv seit 2019

Followers: 0   Following: 0

Statistik

All
  • First Submission
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

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

etwa ein Jahr vor | 0

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

etwa ein Jahr vor | 0

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

fast 2 Jahre vor | 0

Gesendet


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

fast 2 Jahre vor | 0 Downloads |

Thumbnail

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

mehr als 2 Jahre vor | 1

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

mehr als 4 Jahre vor | 1